downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

SQLite3::query> <SQLite3::open
Last updated: Fri, 14 Aug 2009

view this page in

SQLite3::prepare

(PHP 5 >= 5.3.0)

SQLite3::preparePrépare une requête SQL pour exécution

Description

public SQLite3_stmt SQLite3::prepare ( string $query )

Prépare une requête SQL pour exécution et retourne un objet SQLite3_stmt.

Liste de paramètres

query

La requête SQL à préparer.

Valeurs de retour

Retourne un objet SQLite3_stmt en cas de succès, FALSE si une erreur survient.

Exemples

Exemple #1 Exemple avec SQLite3::prepare()

<?php
unlink
('mysqlitedb.db');
$db = new SQLite3('mysqlitedb.db');

$db->exec('CREATE TABLE foo (id INTEGER, bar STRING)');
$db->exec("INSERT INTO foo (id, bar) VALUES (1, 'Ceci est un test')");

$stmt $db->prepare('SELECT bar FROM foo WHERE id=:id');
$stmt->bindValue(':id'1SQLITE3_INTEGER);

$result $stmt->execute();
var_dump($result->fetchArray());
?>



add a note add a note User Contributed Notes
SQLite3::prepare
There are no user contributed notes for this page.

SQLite3::query> <SQLite3::open
Last updated: Fri, 14 Aug 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites