diff options
| author | Marcus Boerger <helly@php.net> | 2004-03-26 21:16:50 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2004-03-26 21:16:50 +0000 |
| commit | f956b50f652fe83f61bdbcace817d46c55a1bb67 (patch) | |
| tree | 80c5848072784b6f078eafb32a72f04679635048 /ext/sqlite/tests/sqlite_oo_016.phpt | |
| parent | 26b75f56c6c20ad0a70de1b3f5d8af6d52e176a6 (diff) | |
| download | php-git-f956b50f652fe83f61bdbcace817d46c55a1bb67.tar.gz | |
Change to studlyCaps convention
# Hopefully discussed enough this time
Diffstat (limited to 'ext/sqlite/tests/sqlite_oo_016.phpt')
| -rwxr-xr-x | ext/sqlite/tests/sqlite_oo_016.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/sqlite/tests/sqlite_oo_016.phpt b/ext/sqlite/tests/sqlite_oo_016.phpt index ac3dac31ca..d831b48326 100755 --- a/ext/sqlite/tests/sqlite_oo_016.phpt +++ b/ext/sqlite/tests/sqlite_oo_016.phpt @@ -23,12 +23,12 @@ foreach ($data as $str) { echo "====BUFFERED====\n"; $r = $db->query("SELECT a, b from strings"); while ($r->valid()) { - var_dump($r->fetch_single()); + var_dump($r->fetchSingle()); } echo "====UNBUFFERED====\n"; -$r = $db->unbuffered_query("SELECT a, b from strings"); +$r = $db->unbufferedQuery("SELECT a, b from strings"); while ($r->valid()) { - var_dump($r->fetch_single()); + var_dump($r->fetchSingle()); } echo "DONE!\n"; ?> |
