summaryrefslogtreecommitdiff
path: root/ext/sqlite/tests/sqlite_oo_032.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/sqlite/tests/sqlite_oo_032.phpt')
-rwxr-xr-xext/sqlite/tests/sqlite_oo_032.phpt29
1 files changed, 29 insertions, 0 deletions
diff --git a/ext/sqlite/tests/sqlite_oo_032.phpt b/ext/sqlite/tests/sqlite_oo_032.phpt
new file mode 100755
index 0000000000..15d4c9c952
--- /dev/null
+++ b/ext/sqlite/tests/sqlite_oo_032.phpt
@@ -0,0 +1,29 @@
+--TEST--
+sqlite-oo: and SPL Countable
+--SKIPIF--
+<?php # vim:ft=php
+if (!extension_loaded("sqlite")) print "skip";
+if (!extension_loaded("spl")) print "skip SPL is not present";
+?>
+--FILE--
+<?php
+include "blankdb_oo.inc";
+
+$db->query("CREATE TABLE menu(id_l int PRIMARY KEY, id_r int UNIQUE, key VARCHAR(10))");
+$db->query("INSERT INTO menu VALUES( 1, 12, 'A')");
+$db->query("INSERT INTO menu VALUES( 2, 9, 'B')");
+$db->query("INSERT INTO menu VALUES(10, 11, 'F')");
+$db->query("INSERT INTO menu VALUES( 3, 6, 'C')");
+$db->query("INSERT INTO menu VALUES( 7, 8, 'E')");
+$db->query("INSERT INTO menu VALUES( 4, 5, 'D')");
+
+$res = $db->query("SELECT * from menu");
+
+var_dump($res->count());
+var_dump(count($res));
+?>
+===DONE===
+--EXPECT--
+int(6)
+int(6)
+===DONE===