From: Wez Furlong Date: Wed, 14 May 2003 13:05:22 +0000 (+0000) Subject: Prep for next release X-Git-Tag: RELEASE_0_9b~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1a521e5ab6a606061f9b1493369f26a7c847e99b;p=php Prep for next release --- 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 @@ PHP beta - 0.9a + 0.9b 2003-04-21 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"