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
[edit] Last updated: Fri, 23 Mar 2012

view this page in

SQLite3::prepare

(PHP 5 >= 5.3.0)

SQLite3::prepareÇalıştırılmak üzere bir SQL sorgusu hazırlar

Açıklama

public SQLite3Stmt SQLite3::prepare ( string $sorgu )

Çalıştırılmak üzere bir SQL sorgusu hazırlar ve bir SQLite3Stmt nesnesi olarak döndürür.

Değiştirgeler

sorgu

Hazırlanacak SQL sorgusu.

Dönen Değerler

İşlem başarılı olursa bir SQLite3Stmt nesnesi, yoksa FALSE döner.

Örnekler

Örnek 1 - SQLite3::prepare() örneği

<?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, 'Bu bir denemedir')");

$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
pavel dot lisa at centrum dot cz 12-Oct-2010 02:20
SQLite3::prepare() will fail, if you pass in a WHERE clause (in the $query) referring to a non-existent column.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites