Dutch PHP Conference 2025 - Call For Papers

SQLite3::prepare

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

SQLite3::preparePrepares an SQL statement for execution

Descrizione

public SQLite3::prepare(string $query): SQLite3Stmt|false

Prepares an SQL statement for execution and returns an SQLite3Stmt object.

Elenco dei parametri

query

The SQL query to prepare.

Valori restituiti

Returns an SQLite3Stmt object on success o false in caso di fallimento.

Esempi

Example #1 SQLite3::prepare() example

<?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());
?>

Vedere anche:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top