CakeFest 2024: The Official CakePHP Conference

SQLite3::prepare

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

SQLite3::preparePreparar una sentencia SQL para su ejecución

Descripción

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

Prepara una sentencia SQL para su ejecución y devuelve un objeto de la clase SQLite3Stmt.

Parámetros

query

La consulta SQL a preparar.

Valores devueltos

Devuelve un objeto de la clase SQLite3Stmt en caso de éxito o false en caso de error.

Ejemplos

Ejemplo #1 Ejemplo de SQLite3::prepare()

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

$bd->exec('CREATE TABLE foo (id INTEGER, bar STRING)');
$bd->exec("INSERT INTO foo (id, bar) VALUES (1, 'Esto es una prueba')");

$sentencia = $bd->prepare('SELECT bar FROM foo WHERE id=:id');
$sentencia->bindValue(':id', 1, SQLITE3_INTEGER);

$resultado = $sentencia->execute();
var_dump($resultado->fetchArray());
?>

add a note

User Contributed Notes 1 note

up
-5
Venkata Subbaraju
8 years ago
Without checking the return value of "prepare" if "exec" is used then it will cause Fatal Error.

"PHP Fatal error: Call to a member function execute() on a non-object "

To avoid this error,need to check return value as following:

<?php
$db
= new SQLite3('school.db');
if(
$stmt = $db->prepare('SELECT id,student_name FROM classTen '))
{
$result = $stmt->execute();
$names=array();
while(
$arr=$result->fetchArray(SQLITE3_ASSOC))
{
$names[$arr['id']]=$arr['student_name'];
}
}
?>
To Top