Manuel PHP
SQLite3::query
(No version information available, might be only in CVS)
SQLite3::query — Executes an SQL query
Description
public SQLite3_result SQLite3::query
( string $query
)
Executes an SQL query, returning an SQLite3_result object if the query returns results.
Liste de paramètres
- query
-
The SQL query to execute.
Valeurs de retour
Returns an SQLite3_result object if the query returns results. Otherwise, returns TRUE if the query succeeded, FALSE on failure.
Exemples
Exemple #1 SQLite3::query() example
- <?php
- $db = new SQLite3('mysqlitedb.db');
- $results = $db->query('SELECT bar FROM foo');
- while ($row = $results->fetchArray()) {
- var_dump($row);
- }
- ?>
Remonter 
