<?xml version="1.0" encoding="iso-8859-1"?>
<rdf:RDF
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns="http://purl.org/rss/1.0/"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
>
    <channel rdf:about="http://pear.php.net/">
    <link>http://pear.php.net/</link>
    <dc:creator>pear-webmaster@lists.php.net</dc:creator>
    <dc:publisher>pear-webmaster@lists.php.net</dc:publisher>
    <dc:language>en-us</dc:language><items>
<rdf:Seq><rdf:li rdf:resource="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.5.0b1/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.5.0a2/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.5.0a1/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.4.1/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.4.0/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.3.0/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.2.2/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.2.1/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.2.0/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.1.0/"/>
</rdf:Seq>
</items>

<title>Latest releases</title>
<description>The latest releases for the package mdb2_driver_mysqli</description>
</channel>

<item rdf:about="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.5.0b1/">
 <title>MDB2_Driver_mysqli 1.5.0b1</title>
 <link>http://pear.php.net/package/MDB2_Driver_mysqli/download/1.5.0b1/</link>
 <content:encoded>- fixed bug #11831: createTable() now supports tables with a multi-field PRIMARY KEY&lt;br /&gt;
  where one field is defined as AUTO_INCREMENT&lt;br /&gt;
- request #11204: support AUTO_INCREMENT for FLOAT data type and UNSIGNED option&lt;br /&gt;
  for FLOAT and DECIMAL data type [afz]&lt;br /&gt;
- fixed bug #11692: value of $db-&gt;supports('transactions') changes after query [afz]&lt;br /&gt;
- request #12731: added truncateTable() in the Manager module&lt;br /&gt;
- request #12732: added vacuum() in the Manager module for OPTIMIZE/VACUUM TABLE abstraction&lt;br /&gt;
- request #12800: added alterDatabase() in the Manager module [afz]&lt;br /&gt;
- fixed quoting in createDatabase() in the Manager module&lt;br /&gt;
- fixed bug #12924: correctly handle internal expected errors even with custom error handling&lt;br /&gt;
- added standaloneQuery() and databaseExists()&lt;br /&gt;
- request #13106: added unixtimestamp() in the Function module&lt;br /&gt;
- fixed regexp in listTableConstraints() in the Manager module to list FOREIGN KEY constraints&lt;br /&gt;
- fixed bug #13180: MySQL driver tells SAVEPOINT is supported for MyISAM tables&lt;br /&gt;
- fixed bug #13283: replace() doesn't respect quote_identifiers option&lt;br /&gt;
- request #13313: setCharSet() supports 'COLLATE' too&lt;br /&gt;
- fixed bug #13370: some capabilities depend on user options, so check them after&lt;br /&gt;
  a setOption() call&lt;br /&gt;
- when triggers are supported, two triggers are created to emulate ON UPDATE / ON DELETE actions&lt;br /&gt;
  for FOREIGN KEY constraints. Known limitation: since mysql doesn't support multiple triggers&lt;br /&gt;
  with the same action time and event for one table, if there are multiple table referencing&lt;br /&gt;
  the same table, only the first one will have the triggers created.&lt;br /&gt;
&lt;br /&gt;
open todo items:&lt;br /&gt;
- use a trigger to emulate setting default now()
 </content:encoded>
 <dc:date>2008-03-15T04:28:55-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.5.0a2/">
 <title>MDB2_Driver_mysqli 1.5.0a2</title>
 <link>http://pear.php.net/package/MDB2_Driver_mysqli/download/1.5.0a2/</link>
 <content:encoded>- fixed bug #12516: error in FK constraint creation query&lt;br /&gt;
- request #12012: added charset/collation support in createDatabase()&lt;br /&gt;
&lt;br /&gt;
open todo items:&lt;br /&gt;
- use a trigger to emulate setting default now()
 </content:encoded>
 <dc:date>2007-12-06T15:16:20-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.5.0a1/">
 <title>MDB2_Driver_mysqli 1.5.0a1</title>
 <link>http://pear.php.net/package/MDB2_Driver_mysqli/download/1.5.0a1/</link>
 <content:encoded>- fixed bug #10024: Added new option 'lob_allow_url_include' (default false) to&lt;br /&gt;
  [dis]allow inserting a LOB from an url (file, http, ...).&lt;br /&gt;
- fixed bug #10986: Using more random statement names (request #11625)&lt;br /&gt;
- fixed bug #11055: Using placeholders with := variable assignment fails [bekarau]&lt;br /&gt;
- initial support for FOREIGN KEY constraints in the Manager and Reverse modules&lt;br /&gt;
- request #11389: added many new MySQL 5.1 error codes in errorInfo()&lt;br /&gt;
- fixed bug #11428: propagate quote() errors with invalid data types&lt;br /&gt;
- fixed bug in _modifyQuery() when using SELECT FOR UPDATE or similar queries&lt;br /&gt;
- fixed bug #11590: _getServerCapabilities() has to be called once per connection&lt;br /&gt;
- fixed bug #11790: avoid array_diff() because it has a memory leak in PHP 5.1.x&lt;br /&gt;
- fixed some E_STRICT errors with PHP5&lt;br /&gt;
- fixed bug #12010: MDB2_PORTABILITY_RTRIM option was ignored&lt;br /&gt;
- fixed bug #12083: createTable() in the Manager module now returns MDB2_OK on success,&lt;br /&gt;
  as documented&lt;br /&gt;
- request #12213: usage of mysqli_options 'MYSQLI_SET_CHARSET_NAME' and mysqli_set_charset()&lt;br /&gt;
  when available (patch by Carsten Wiedmann)&lt;br /&gt;
- fixed bug #12242: missing charset info in the Reverse module (patch by Carsten Wiedmann)&lt;br /&gt;
- fixed bug #12269: tableInfo() in the Reverse module detect 'clob' data type&lt;br /&gt;
  as first option&lt;br /&gt;
- fixed bug #12336: supply default value for NOT NULL timestamp fields&lt;br /&gt;
&lt;br /&gt;
open todo items:&lt;br /&gt;
- use a trigger to emulate setting default now()
 </content:encoded>
 <dc:date>2007-10-28T15:27:30-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.4.1/">
 <title>MDB2_Driver_mysqli 1.4.1</title>
 <link>http://pear.php.net/package/MDB2_Driver_mysqli/download/1.4.1/</link>
 <content:encoded>- fixed bug #10378: incorrect query rewrite in setLimit() when using &quot;FOR UPDATE&quot;&lt;br /&gt;
  or &quot;LOCK IN SHARE MODE&quot; (thanks to priyadi) or &quot;INTO OUTFILE&quot; or &quot;INTO DUMPFILE&quot;&lt;br /&gt;
- fixed bug #10384: in setCharset(), use mysqli_real_escape_string() instead of&lt;br /&gt;
  mysql_real_escape_string()&lt;br /&gt;
- return length as &quot;precision,scale&quot; for NUMERIC and DECIMAL fields in mapNativeDatatype()&lt;br /&gt;
- in getTableIndexDefinition() and getTableConstraintDefinition() in the Reverse&lt;br /&gt;
  module, also return the field position in the index/constraint&lt;br /&gt;
- fixed bug #10636: transactions broken in release 2.4.0 because of some properties&lt;br /&gt;
  being reset (thanks to Conor Kerr)&lt;br /&gt;
- fixed bug #10748: failed connections don't return native error code [urkle]&lt;br /&gt;
- fixed bug #10895: setLimit() does not work properly when a subquery uses LIMIT&lt;br /&gt;
&lt;br /&gt;
open todo items:&lt;br /&gt;
- use a trigger to emulate setting default now()
 </content:encoded>
 <dc:date>2007-05-03T14:56:11-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.4.0/">
 <title>MDB2_Driver_mysqli 1.4.0</title>
 <link>http://pear.php.net/package/MDB2_Driver_mysqli/download/1.4.0/</link>
 <content:encoded>- fixed bug #9283: missing support for BINARY/VARBINARY data types (thanks to Tom Hendrikx)&lt;br /&gt;
- propagate errors in getTableFieldDefinition() in the Reverse module&lt;br /&gt;
- implemented getTriggerDefinition() in the Reverse module (mysql &gt; 5.0.2) [experimental]&lt;br /&gt;
- implemented listTableTriggers() in the Manager module (mysql &gt; 5.0.2)&lt;br /&gt;
- implemented listFunctions() in the Manager module&lt;br /&gt;
- setCharset() now uses &quot;SET NAMES&quot; instead of &quot;SET character_set_client&quot;&lt;br /&gt;
- select the mysql database in listUsers() in the Manager module&lt;br /&gt;
- added error codes for MySQL 5 (patch by Adam Harvey)&lt;br /&gt;
- implemented guid() in the Function module [globally unique identifier]&lt;br /&gt;
- fixed bug #10033: beginTransaction() does not know server capabilities&lt;br /&gt;
- fixed bug #10057: createConstraint() returns an error when the definition is incomplete&lt;br /&gt;
- request #9451: you can set charset, collation, engine and comments in createSequence()&lt;br /&gt;
- implemented a fallback mechanism within getTableIndexDefinition() and&lt;br /&gt;
  getTableConstraintDefinition() in the Reverse module to ignore the 'idxname_format'&lt;br /&gt;
  option and use the index name as provided in case of failure before returning&lt;br /&gt;
  an error&lt;br /&gt;
- fixed bug #10181: propagate error when an invalid type is passed to prepare()&lt;br /&gt;
- added a 'nativetype_map_callback' option to map native data declarations back to&lt;br /&gt;
  custom data types (thanks to Andrew Hill).&lt;br /&gt;
- fixed bug #10239: execute() misinterprets MySQL's user defined variables&lt;br /&gt;
- phpdoc fixes&lt;br /&gt;
&lt;br /&gt;
open todo items:&lt;br /&gt;
- use a trigger to emulate setting default now()
 </content:encoded>
 <dc:date>2007-03-13T16:54:52-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.3.0/">
 <title>MDB2_Driver_mysqli 1.3.0</title>
 <link>http://pear.php.net/package/MDB2_Driver_mysqli/download/1.3.0/</link>
 <content:encoded>- added charset and collation support to field declaration&lt;br /&gt;
- fixed bug #9024: typo in error checking&lt;br /&gt;
- fixed parameter order in charset setting fallback (Bug #8807)&lt;br /&gt;
- fix typos in error handling in a few places (bug #9024)&lt;br /&gt;
- typo fix in tableInfo (Bug #8925)&lt;br /&gt;
- do not skip id generation in nextId() when creating a sequence on demand&lt;br /&gt;
  because this prevents lastInsertID() from working&lt;br /&gt;
- migrated to package.xml version 2
 </content:encoded>
 <dc:date>2006-11-03T08:12:56-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.2.2/">
 <title>MDB2_Driver_mysqli 1.2.2</title>
 <link>http://pear.php.net/package/MDB2_Driver_mysqli/download/1.2.2/</link>
 <content:encoded>- fixed single quote handling inside non emulated prepared statements (Bug #8538)&lt;br /&gt;
- flip positions property array in prepared statement objects to make it&lt;br /&gt;
  possible to optionally use the same named placeholder in multiple places&lt;br /&gt;
  inside a single prepared statement
 </content:encoded>
 <dc:date>2006-09-03T03:07:24-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.2.1/">
 <title>MDB2_Driver_mysqli 1.2.1</title>
 <link>http://pear.php.net/package/MDB2_Driver_mysqli/download/1.2.1/</link>
 <content:encoded>- fixed issue in tableInfo() that originates in getTableFieldDefinition() which&lt;br /&gt;
  led to returning incorrect type values (Bug #8291)&lt;br /&gt;
- quote identifiers in the reverse module when 'quote_identifiers' is enabled (Bug #8309)&lt;br /&gt;
- use version_compare() to fix complex version comparisons (Bug #8355)&lt;br /&gt;
- do not use quote() in setCharset() since it is supposed to set the charset in&lt;br /&gt;
  the connection that was passed to it&lt;br /&gt;
- return an error if a named placeholder name is used twice inside a single statement&lt;br /&gt;
- do not list empty contraints and indexes&lt;br /&gt;
- added support for 'primary' option in createTable()&lt;br /&gt;
- fixed notnull reverse engineering on mysql 4.x (Bug #8415)&lt;br /&gt;
- do not set a default if type is a LOB (Request #8074)&lt;br /&gt;
- if a default value is set, then we need to use VARCHAR instead of TEXT&lt;br /&gt;
- removed _verifyTableType() since it just adds overhead, is hard to do reliably&lt;br /&gt;
  and you will get an error if the table type is not supported anyways&lt;br /&gt;
- fixed handling return values when disable_query is set in _doQuery() and _execute()&lt;br /&gt;
- only call RELEASE SAVEPOINT if the server version if 5.0.3 or higher&lt;br /&gt;
- increased MDB2 dependency too 2.2.1
 </content:encoded>
 <dc:date>2006-08-21T14:24:59-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.2.0/">
 <title>MDB2_Driver_mysqli 1.2.0</title>
 <link>http://pear.php.net/package/MDB2_Driver_mysqli/download/1.2.0/</link>
 <content:encoded>- added ability to escape wildcard characters in escape() and quote()&lt;br /&gt;
- added setTransactionIsolation()&lt;br /&gt;
- added savepoint support to beginTransaction(), commit() and rollback()&lt;br /&gt;
- added debug() call at the end of a query/prepare/execute calling (Request #7933)&lt;br /&gt;
- added context array parameter to debug() and make use of it whereever sensible&lt;br /&gt;
- added optional method name parameter to raiseError() and use whereever possible&lt;br /&gt;
- added ability to escape wildcard characters in escape() and quote()&lt;br /&gt;
- added debug() call at the end of a query/prepare/execute calling (Request #7933)&lt;br /&gt;
- added 'nativetype' output to tableInfo() and getTableFieldDefinition()&lt;br /&gt;
- added 'mdb2type' output to getTableFieldDefinition()&lt;br /&gt;
- reworked tableInfo() to use a common implementation based on getTableFieldDefinition()&lt;br /&gt;
  when a table name is passed (Bug #8124)&lt;br /&gt;
- fixed incorrect regex in mapNativeDatatype() (Bug #8256) (thx ioz at ionosfera dot com)&lt;br /&gt;
- use old dsn when rolling back open transactions in disconnect()
 </content:encoded>
 <dc:date>2006-07-23T03:19:13-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/MDB2_Driver_mysqli/download/1.1.0/">
 <title>MDB2_Driver_mysqli 1.1.0</title>
 <link>http://pear.php.net/package/MDB2_Driver_mysqli/download/1.1.0/</link>
 <content:encoded>- tweaked handling of free() for prepared statements&lt;br /&gt;
- return error if a prepared statement is attempted to be freed twice&lt;br /&gt;
- removed use of addslashes() for BLOB quoting&lt;br /&gt;
  (this might result in SQL injection vulnerability)&lt;br /&gt;
- added setCharset()&lt;br /&gt;
- use setCharset() in connect()/_doConnect()&lt;br /&gt;
- set transaction enabled engine as default&lt;br /&gt;
- generalized quoteIdentifier() with a property&lt;br /&gt;
- use general implementation of quoteIdentifier() (Bug #7738)&lt;br /&gt;
- fixed warning in replace() if type is not set (Bug #7740)&lt;br /&gt;
- cosmetic performance tweak in getTableFieldDefinition()&lt;br /&gt;
- switched most array_key_exists() calls to !empty() to improve readability and performance&lt;br /&gt;
- fixed a few edge cases and potential warnings&lt;br /&gt;
- added ability to rewrite queries for query(), exec() and prepare() using a debug handler callback&lt;br /&gt;
- pass limit and offset to the result object constructor in _execute() for read statements&lt;br /&gt;
- check if result/connection has not yet been freed/dicsonnected before&lt;br /&gt;
  attempting to free a result set(Bug #7790)&lt;br /&gt;
- fixed unbuffered query support&lt;br /&gt;
- revert change that would prefer 'clob' over 'text' for TEXT fields&lt;br /&gt;
  (this was breaking runtime instrospection)
 </content:encoded>
 <dc:date>2006-06-15T08:43:35-05:00</dc:date>
</item>

</rdf:RDF>