summaryrefslogtreecommitdiff
path: root/ext/sqlite/tests/sqlite_oo_024.phpt
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-09-04 14:54:53 +0000
committerMarcus Boerger <helly@php.net>2003-09-04 14:54:53 +0000
commit421e2e9275809dfca38a260fbb4c26bff5f849d3 (patch)
treeec4f167d33e653d90369f44aeaa084ee78b45cd2 /ext/sqlite/tests/sqlite_oo_024.phpt
parent0f91d8a4f6508f8885a82f7f713a9a3770d6462d (diff)
downloadphp-git-421e2e9275809dfca38a260fbb4c26bff5f849d3.tar.gz
Go with the mess
Diffstat (limited to 'ext/sqlite/tests/sqlite_oo_024.phpt')
-rwxr-xr-xext/sqlite/tests/sqlite_oo_024.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sqlite/tests/sqlite_oo_024.phpt b/ext/sqlite/tests/sqlite_oo_024.phpt
index d6448c5bb8..f1f89d9acc 100755
--- a/ext/sqlite/tests/sqlite_oo_024.phpt
+++ b/ext/sqlite/tests/sqlite_oo_024.phpt
@@ -29,13 +29,13 @@ foreach ($data as $str) {
echo "====class24====\n";
$res = $db->query("SELECT a FROM strings", SQLITE_ASSOC);
-while ($res->has_more()) {
+while ($res->hasMore()) {
var_dump($res->fetch_object('class24'));
}
echo "====stdclass====\n";
$res = $db->query("SELECT a FROM strings", SQLITE_ASSOC);
-while ($res->has_more()) {
+while ($res->hasMore()) {
var_dump($res->fetch_object());
}