summaryrefslogtreecommitdiff
path: root/ext/sqlite/sqlite.php
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2003-08-07 17:53:49 +0000
committerSVN Migration <svn@php.net>2003-08-07 17:53:49 +0000
commit9936cda064c3b8c11c60e04a75ace4b0a45f6ff6 (patch)
tree38905f6ef41580c6c8d5754e4b8d275bc61793d9 /ext/sqlite/sqlite.php
parenta123efb6edd7100c24438e5d088f6acdfda6d2bb (diff)
downloadphp-git-RELEASE_0_5_3.tar.gz
This commit was manufactured by cvs2svn to create tag 'RELEASE_0_5_3'.RELEASE_0_5_3
Diffstat (limited to 'ext/sqlite/sqlite.php')
-rw-r--r--ext/sqlite/sqlite.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/ext/sqlite/sqlite.php b/ext/sqlite/sqlite.php
deleted file mode 100644
index d1fefb4503..0000000000
--- a/ext/sqlite/sqlite.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-if (!extension_loaded("sqlite")) {
- dl("sqlite.so");
-}
-
-debug_zval_dump(sqlite_libversion());
-debug_zval_dump(sqlite_libencoding());
-
-$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);
-debug_zval_dump(sqlite_last_error($s));
-debug_zval_dump(sqlite_error_string(sqlite_last_error($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));
-
-for ($j = 0; $j < sqlite_num_fields($r); $j++) {
- echo "Field $j is " . sqlite_field_name($r, $j) . "\n";
-}
-
-while ($row = sqlite_fetch_array($r, SQLITE_ASSOC)) {
- print_r($row);
-}
-
-sqlite_close($s);
-
-?>