We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f3660c commit ce7f580Copy full SHA for ce7f580
ext/sqlite3/tests/sqlite3_fetch_all.phpt
@@ -13,6 +13,7 @@ $stmt = $conn->query('insert into users (id, num) values (2, 2)');
13
$stmt = $conn->query('SELECT * FROM users');
14
$rowall = $stmt->fetchAll();
15
var_dump($rowall);
16
+$stmt->reset();
17
$rowfetch = [];
18
while (($row = $stmt->fetchArray())) $rowfetch[] = $row;
19
var_dump($rowfetch);
0 commit comments