summaryrefslogtreecommitdiff
path: root/ext/sqlite3/tests/sqlite3_14_querysingle.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/sqlite3/tests/sqlite3_14_querysingle.phpt')
-rw-r--r--ext/sqlite3/tests/sqlite3_14_querysingle.phpt38
1 files changed, 38 insertions, 0 deletions
diff --git a/ext/sqlite3/tests/sqlite3_14_querysingle.phpt b/ext/sqlite3/tests/sqlite3_14_querysingle.phpt
new file mode 100644
index 0000000..8cfe089
--- /dev/null
+++ b/ext/sqlite3/tests/sqlite3_14_querysingle.phpt
@@ -0,0 +1,38 @@
+--TEST--
+SQLite3::querySingle tests
+--SKIPIF--
+<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
+--FILE--
+<?php
+
+require_once(dirname(__FILE__) . '/new_db.inc');
+define('TIMENOW', time());
+
+echo "Creating Table\n";
+var_dump($db->exec('CREATE TABLE test (time INTEGER, id STRING)'));
+
+echo "INSERT into table\n";
+var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'a')"));
+var_dump($db->exec("INSERT INTO test (time, id) VALUES (" . TIMENOW . ", 'b')"));
+
+echo "SELECTING results\n";
+var_dump($db->querySingle("SELECT id FROM test WHERE id = 'a'"));
+var_dump($db->querySingle("SELECT id, time FROM test WHERE id = 'a'", true));
+
+echo "Done"
+?>
+--EXPECTF--
+Creating Table
+bool(true)
+INSERT into table
+bool(true)
+bool(true)
+SELECTING results
+string(1) "a"
+array(2) {
+ ["id"]=>
+ string(1) "a"
+ ["time"]=>
+ int(%d)
+}
+Done