Skip to content

Commit

Permalink
Update TODO and example.
Browse files Browse the repository at this point in the history
Hide phpize crap from CVS
  • Loading branch information
wez committed Apr 17, 2003
1 parent c73e304 commit 1c3b2a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ext/sqlite/TODO
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions ext/sqlite/sqlite.php
Expand Up @@ -9,8 +9,8 @@
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));
Expand Down

0 comments on commit 1c3b2a2

Please sign in to comment.