diff options
| author | Marcus Boerger <helly@php.net> | 2003-06-26 21:37:54 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2003-06-26 21:37:54 +0000 |
| commit | 4608ddb5d804368fdc4bcac440bba8a9c671c336 (patch) | |
| tree | 99860c574a842ec55747047e835e453a65437152 /ext | |
| parent | a0ecfc9c31f77db16d5ae15c7b8ddf228979fcf2 (diff) | |
| download | php-git-4608ddb5d804368fdc4bcac440bba8a9c671c336.tar.gz | |
MFB: Function was renamed (don't test an alias)
Diffstat (limited to 'ext')
| -rwxr-xr-x | ext/sqlite/tests/sqlite_016.phpt | 6 | ||||
| -rwxr-xr-x | ext/sqlite/tests/sqlite_oo_016.phpt | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/sqlite/tests/sqlite_016.phpt b/ext/sqlite/tests/sqlite_016.phpt index 8df7dc9a12..cf5d0b08fe 100755 --- a/ext/sqlite/tests/sqlite_016.phpt +++ b/ext/sqlite/tests/sqlite_016.phpt @@ -1,5 +1,5 @@ --TEST-- -sqlite: fetch string +sqlite: fetch single --INI-- sqlite.assoc_case=0 --SKIPIF-- @@ -23,12 +23,12 @@ foreach ($data as $str) { echo "====BUFFERED====\n"; $r = sqlite_query("SELECT a, b from strings", $db); while (sqlite_has_more($r)) { - var_dump(sqlite_fetch_string($r)); + var_dump(sqlite_fetch_single($r)); } echo "====UNBUFFERED====\n"; $r = sqlite_unbuffered_query("SELECT a, b from strings", $db); while (sqlite_has_more($r)) { - var_dump(sqlite_fetch_string($r)); + var_dump(sqlite_fetch_single($r)); } echo "DONE!\n"; ?> diff --git a/ext/sqlite/tests/sqlite_oo_016.phpt b/ext/sqlite/tests/sqlite_oo_016.phpt index a5c83b06ad..5b924c678f 100755 --- a/ext/sqlite/tests/sqlite_oo_016.phpt +++ b/ext/sqlite/tests/sqlite_oo_016.phpt @@ -1,5 +1,5 @@ --TEST-- -sqlite-oo: fetch string +sqlite-oo: fetch single --INI-- sqlite.assoc_case=0 --SKIPIF-- |
