raising the head after a three-weeks refactoring
[m6w6/ext-psi] / tests / sqlite / sqlite001.phpt
index a5e131674cd0ca2e072b795a732f8c0ef60ac4f1..552c1d8e8030580e01543360dbc78f04c25e28dc 100644 (file)
@@ -52,6 +52,11 @@ if ($rc) {
 
 sqlite3\close($db);
 
+$rc = sqlite3\exec($db, "SELECT *", "callback", new stdClass, $error);
+if ($rc) {
+       printf("%s: '%s'\n", sqlite3\errstr($rc), $error);
+}
+
 ?>
 ===DONE===
 --EXPECTF--
@@ -73,6 +78,7 @@ string(%d) "3.%d.%s"
 2: data = three
 
 SQL logic error or missing database: 'no tables specified'
+library routine called out of sequence: ''
 ===DONE===
 --CLEAN--
 <?php