From: Marcus Boerger Date: Mon, 9 Jun 2003 23:22:00 +0000 (+0000) Subject: Add a test for sqlite_array_query() X-Git-Tag: RELEASE_1_0_2~329 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c11469844563a06b2dc06dfc1905606873289593;p=php Add a test for sqlite_array_query() --- diff --git a/ext/sqlite/tests/sqlite_015.phpt b/ext/sqlite/tests/sqlite_015.phpt new file mode 100755 index 0000000000..b5bd6172c8 --- /dev/null +++ b/ext/sqlite/tests/sqlite_015.phpt @@ -0,0 +1,47 @@ +--TEST-- +sqlite: fetch all (array_query) +--INI-- +sqlite.assoc_case=0 +--SKIPIF-- + +--FILE-- + +--EXPECTF-- +array(3) { + [0]=> + array(1) { + [0]=> + string(3) "one" + } + [1]=> + array(1) { + [0]=> + string(3) "two" + } + [2]=> + array(1) { + [0]=> + string(5) "three" + } +} +DONE!