diff options
Diffstat (limited to 'ext/sqlite/tests/sqlite_oo_008.phpt')
-rwxr-xr-x | ext/sqlite/tests/sqlite_oo_008.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite/tests/sqlite_oo_008.phpt b/ext/sqlite/tests/sqlite_oo_008.phpt index 4340fb6e3a..8e99a1deaf 100755 --- a/ext/sqlite/tests/sqlite_oo_008.phpt +++ b/ext/sqlite/tests/sqlite_oo_008.phpt @@ -22,7 +22,7 @@ foreach ($data as $str) { } $r = $db->query("SELECT a from strings"); -while ($row = $r->fetch_array(SQLITE_NUM)) { +while ($row = $r->fetch(SQLITE_NUM)) { var_dump($row); } echo "DONE!\n"; |