summaryrefslogtreecommitdiff
path: root/ext/sqlite/tests
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-02-15 21:09:42 +0000
committerMarcus Boerger <helly@php.net>2005-02-15 21:09:42 +0000
commit7956ca0211fed55f9f658e2a1eeec864a2475a08 (patch)
treea94e9feb827581e285a34ee11672cbd4393232dd /ext/sqlite/tests
parent8ff4a1002c90461dc71c0cf7bbac505cc87b48c7 (diff)
downloadphp-git-7956ca0211fed55f9f658e2a1eeec864a2475a08.tar.gz
- SQLite depends on SPL if it is present
- Add SQLiteResult::count() - SQLiteResult implements Countable if present
Diffstat (limited to 'ext/sqlite/tests')
-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===