SQLite3::prepare
(PHP 5 >= 5.3.0, PHP 7, PHP 8)
SQLite3::prepare — 実行する SQL 文を準備する
説明
実行する SQL 文を準備し、SQLite3Stmt オブジェクトを返します。
パラメータ
query
-
準備したい SQL クエリ。
戻り値
成功した場合に SQLite3Stmt オブジェクト、失敗した場合に false
を返します。
例
例1 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, 'This is a test')");
$stmt = $db->prepare('SELECT bar FROM foo WHERE id=:id');
$stmt->bindValue(':id', 1, SQLITE3_INTEGER);
$result = $stmt->execute();
var_dump($result->fetchArray());
?>
参考
- SQLite3Stmt::paramCount() - プリペアドステートメント内のパラメータの数を返す
- SQLite3Stmt::bindValue() - パラメータの値を変数にバインドする
- SQLite3Stmt::bindParam() - パラメータを変数にバインドする
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google