From: Wez Furlong Date: Mon, 21 Apr 2003 20:24:03 +0000 (+0000) Subject: Prepare for release. X-Git-Tag: SPL_ALPHA~119 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=04c5e2fc067507c7d8142259eb74d784eb048189;p=php Prepare for release. --- diff --git a/ext/sqlite/package.xml b/ext/sqlite/package.xml index fcdb0decc2..3ca202e208 100644 --- a/ext/sqlite/package.xml +++ b/ext/sqlite/package.xml @@ -26,20 +26,22 @@ PHP beta - 0.7 - 2003-04-18 + 0.9 + 2003-04-21 - SQLite is now bundled with the extension; no need to download and build - it separately. - - Fixed memory corruption bug when calling back into a PHP function from - an SQL statement. + Added: + sqlite_popen() for persistent db connections. + sqlite_unbuffered_query() for high performance queries. + sqlite_last_error() returns error code from last operation. + sqlite_error_string() returns description of error. + sqlite_create_aggregate() for registering aggregating SQL functions. + sqlite_create_function() for registering regular SQL functions. + + Fixed some build issues for thread-safe builds. - Added sqlite_busy_timeout() to set the maximum duration for attempting - to lock the database when updating it. Default timeout is set to 1/2 - second. + API is considered stabilized for 4.3.x; this is a pre-release before + announcing stable version 1.0. - NULL columns are now correctly returned as NULL values.