]> granicus.if.org Git - php/commitdiff
Update TODO and example.
authorWez Furlong <wez@php.net>
Thu, 17 Apr 2003 03:15:13 +0000 (03:15 +0000)
committerWez Furlong <wez@php.net>
Thu, 17 Apr 2003 03:15:13 +0000 (03:15 +0000)
Hide phpize crap from CVS

ext/sqlite/TODO
ext/sqlite/sqlite.php

index 40f93467d8c8da9336e937a19cb1f2bdd0213642..194a75bce87d0901c07fdebe036620e7806f7461 100644 (file)
@@ -1,4 +1,4 @@
-- Implement a generic php function handler for use in SQL statements and
+- Implement an aggregating php function handler for use in SQL statements and
   triggers etc.
 
 - Make a release
index 40ba9d2195fed5e2cbc3edf4e91177c34f97bb11..ef17ae9b06e0f028d2c59ce3957ea595e09e5237 100644 (file)
@@ -9,8 +9,8 @@ $s = sqlite_open("weztest.sqlite", 0666, $err);
 debug_zval_dump($err);
 debug_zval_dump($s);
 
-$r = sqlite_query("create table foo (a INTEGER PRIMARY KEY, b INTEGER )", $s);
-$r = sqlite_query("select * from sqlite_master", $s);
+//$r = sqlite_query("create table foo (a INTEGER PRIMARY KEY, b INTEGER )", $s);
+$r = sqlite_query("select *, php('md5', sql) as o from sqlite_master", $s);
 debug_zval_dump($r);
 debug_zval_dump(sqlite_num_rows($r));
 debug_zval_dump(sqlite_num_fields($r));