SQLite3::query
(PHP 5 >= 5.3.0)
SQLite3::query — Executes an SQL query
Описание
public SQLite3_result SQLite3::query
( string $query
)
Список параметров
-
query
-
The SQL query to execute.
Возвращаемые значения
Returns an SQLite3_result object if the query returns results. Otherwise,
returns TRUE if the query succeeded, FALSE on failure.
Примеры
Пример #1 SQLite3::query() example
<?php
$db = new SQLite3('mysqlitedb.db');
$results = $db->query('SELECT bar FROM foo');
while ($row = $results->fetchArray()) {
var_dump($row);
}
?>