summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2003-05-14 13:05:22 +0000
committerWez Furlong <wez@php.net>2003-05-14 13:05:22 +0000
commit1a521e5ab6a606061f9b1493369f26a7c847e99b (patch)
tree552f2bc95588f71cefa918599df2ff115a17888e
parent31dc62a905e85d1a9360dfb71cb13cf22e79ce0c (diff)
downloadphp-git-1a521e5ab6a606061f9b1493369f26a7c847e99b.tar.gz
Prep for next release
-rw-r--r--ext/sqlite/package.xml7
-rw-r--r--ext/sqlite/sqlite.c2
2 files changed, 7 insertions, 2 deletions
diff --git a/ext/sqlite/package.xml b/ext/sqlite/package.xml
index 8108f9fcf1..ea1c55bb8c 100644
--- a/ext/sqlite/package.xml
+++ b/ext/sqlite/package.xml
@@ -32,7 +32,7 @@
<license>PHP</license>
<release>
<state>beta</state>
- <version>0.9a</version>
+ <version>0.9b</version>
<date>2003-04-21</date>
<notes>
Added:
@@ -42,6 +42,11 @@
sqlite_error_string() returns description of error.
sqlite_create_aggregate() for registering aggregating SQL functions.
sqlite_create_function() for registering regular SQL functions.
+ sqlite_fetch_string() for speedy access to first column of result sets.
+ iteration interface
+
+ sqlite_query() functions accept resource/query string in either order,
+ for compatibility with mysql and postgresql extensions.
Fixed some build issues for thread-safe builds.
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c
index 26b1dd8158..5aa2a55b21 100644
--- a/ext/sqlite/sqlite.c
+++ b/ext/sqlite/sqlite.c
@@ -24,7 +24,7 @@
#include "config.h"
#endif
-#define PHP_SQLITE_MODULE_VERSION "0.9a"
+#define PHP_SQLITE_MODULE_VERSION "0.9b"
#include "php.h"
#include "php_ini.h"