summaryrefslogtreecommitdiff
path: root/ext/sqlite/tests/sqlite_oo_014.phpt
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-03-23 08:48:36 +0000
committerMarcus Boerger <helly@php.net>2004-03-23 08:48:36 +0000
commit82e2b354ac8d2df5643b50c432bde5ad0edac8db (patch)
tree5b2f641d14cbc0e2e9fbaaf3aa82d21c164d3615 /ext/sqlite/tests/sqlite_oo_014.phpt
parente6a1f0467760e69929e1993893e2a7c646cfe435 (diff)
downloadphp-git-82e2b354ac8d2df5643b50c432bde5ad0edac8db.tar.gz
Consitency rules
Diffstat (limited to 'ext/sqlite/tests/sqlite_oo_014.phpt')
-rwxr-xr-xext/sqlite/tests/sqlite_oo_014.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sqlite/tests/sqlite_oo_014.phpt b/ext/sqlite/tests/sqlite_oo_014.phpt
index 022de10752..e650b71432 100755
--- a/ext/sqlite/tests/sqlite_oo_014.phpt
+++ b/ext/sqlite/tests/sqlite_oo_014.phpt
@@ -22,12 +22,12 @@ foreach ($data as $str) {
}
echo "unbuffered twice\n";
-$r = $db->queryUnbuffered("SELECT a from strings", SQLITE_NUM);
+$r = $db->unbufferedQuery("SELECT a from strings", SQLITE_NUM);
var_dump($r->fetchAll());
var_dump($r->fetchAll());
echo "unbuffered with fetch_array\n";
-$r = $db->queryUnbuffered("SELECT a from strings", SQLITE_NUM);
+$r = $db->unbufferedQuery("SELECT a from strings", SQLITE_NUM);
var_dump($r->fetch());
var_dump($r->fetchAll());