update package.xml for 5.0

This commit is contained in:
Wez Furlong 2003-06-24 11:23:31 +00:00
parent b6bc8b9edf
commit a27b34a20b

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="ISO-8859-1" ?> <?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE package SYSTEM "../../../php4/pear/package.dtd"> <!DOCTYPE package SYSTEM "../pear/package.dtd">
<package> <package>
<name>SQLite</name> <name>SQLite</name>
<summary>SQLite database bindings</summary> <summary>SQLite database bindings</summary>
@ -24,39 +24,22 @@
</maintainer> </maintainer>
</maintainers> </maintainers>
<description> <description>
SQLite is a C library that implements an embeddable SQL database engine. SQLite is a C library that implements an embeddable SQL database engine.
Programs that link with the SQLite library can have SQL database access Programs that link with the SQLite library can have SQL database access
without running a separate RDBMS process. without running a separate RDBMS process.
This extension allows you to access SQLite databases from within PHP. This extension allows you to access SQLite databases from within PHP.
Windows binary available from: Windows binary available from:
http://snaps.php.net/win32/PECL_STABLE/php_sqlite.dll http://snaps.php.net/win32/PECL_STABLE/php_sqlite.dll
</description> </description>
<license>PHP</license> <license>PHP</license>
<release> <release>
<state>stable</state> <state>stable</state>
<version>1.0</version> <version>2.0-dev</version>
<date>2003-06-21</date> <date>TBA</date>
<notes> <notes>
Added: Added:
sqlite_udf_encode_binary() and sqlite_udf_decode_binary() for OO API (Marcus).
handling binary data in UDF callbacks.
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.
sqlite_fetch_string() for speedy access to first column of result sets.
sqlite_fetch_all() to receive all rowsets from a query as an array.
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.
Increase the default busy timeout interval to 60 seconds.
</notes> </notes>
<filelist> <filelist>
<file role="src" name="config.m4"/> <file role="src" name="config.m4"/>
@ -137,5 +120,11 @@
</dir> </dir>
</dir> </dir>
</filelist> </filelist>
<deps>
<dep type="php" rel="ge">5.0.0</dep>
</deps>
</release> </release>
</package> </package>
<!--
vim:et:ts=1:sw=1
-->