<?php
$db = new SQLite3(':memory:');
$db->exec("CREATE TABLE Dogs (Id INTEGER PRIMARY KEY, Breed TEXT, Name TEXT, Age INTEGER)");
$sth = $db->prepare("INSERT INTO Dogs (Breed, Name, Age) VALUES (:breed,:name,:age)");
$sth->bindValue(':breed', 'canis', SQLITE3_TEXT);
$sth->bindValue(':name', 'jack', SQLITE3_TEXT);
$sth->bindValue(':age', 7, SQLITE3_INTEGER);
$sth->execute();
$sth->clear(); //this is supposed to clear bindings!
$sth->reset();
$sth->bindValue(':breed', 'russel', SQLITE3_TEXT);
$sth->bindValue(':age', 3, SQLITE3_INTEGER);
$sth->execute();
$res = $db->query('SELECT * FROM Dogs');
while (($row = $res->fetchArray(SQLITE3_ASSOC))) {
var_dump($row);
}
- Output for 5.6.28, 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
- array(4) {
["Id"]=>
int(1)
["Breed"]=>
string(5) "canis"
["Name"]=>
string(4) "jack"
["Age"]=>
int(7)
}
array(4) {
["Id"]=>
int(2)
["Breed"]=>
string(6) "russel"
["Name"]=>
NULL
["Age"]=>
int(3)
}
- Output for 5.5.0 - 5.5.37, 5.6.0 - 5.6.23, 7.0.0 - 7.0.8
- array(4) {
["Id"]=>
int(1)
["Breed"]=>
string(5) "canis"
["Name"]=>
string(4) "jack"
["Age"]=>
int(7)
}
array(4) {
["Id"]=>
int(2)
["Breed"]=>
string(6) "russel"
["Name"]=>
string(4) "jack"
["Age"]=>
int(3)
}
preferences:
119.71 ms | 408 KiB | 5 Q