diff options
| author | Wez Furlong <wez@php.net> | 2003-04-17 03:15:13 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2003-04-17 03:15:13 +0000 |
| commit | 1c3b2a28d178da43306cd6b2b97e1012687178e0 (patch) | |
| tree | e21e3d2a258ee9d1dc8263c9c9a2eb8e7e419f11 /ext/sqlite/sqlite.php | |
| parent | c73e304dc25c44a45505f60450f788fac773ac61 (diff) | |
| download | php-git-1c3b2a28d178da43306cd6b2b97e1012687178e0.tar.gz | |
Update TODO and example.
Hide phpize crap from CVS
Diffstat (limited to 'ext/sqlite/sqlite.php')
| -rw-r--r-- | ext/sqlite/sqlite.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sqlite/sqlite.php b/ext/sqlite/sqlite.php index 40ba9d2195..ef17ae9b06 100644 --- a/ext/sqlite/sqlite.php +++ b/ext/sqlite/sqlite.php @@ -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)); |
