<?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/MDB_QueryTool/download/1.2.3/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB_QueryTool/download/1.2.2/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB_QueryTool/download/1.2.1/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB_QueryTool/download/1.2.0/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB_QueryTool/download/1.1.1/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB_QueryTool/download/1.1.0/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB_QueryTool/download/1.0.2/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB_QueryTool/download/1.0.1/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB_QueryTool/download/1.0.0/"/>
<rdf:li rdf:resource="http://pear.php.net/package/MDB_QueryTool/download/0.11.1/"/>
</rdf:Seq>
</items>

<title>Latest releases of mdb_querytool</title>
<description>The latest releases for the package mdb_querytool</description>
</channel>

<item rdf:about="http://pear.php.net/package/MDB_QueryTool/download/1.2.3/">
 <title>MDB_QueryTool 1.2.3</title>
 <link>http://pear.php.net/package/MDB_QueryTool/download/1.2.3/</link>
 <content:encoded>QA release&lt;br /&gt;
- fixed bug #12905: add() doesn't return the id of the inserted&lt;br /&gt;
row when using MDB2 and no primaryCol&lt;br /&gt;
- fixed bug #13307: wrong fieldname case with oracle&lt;br /&gt;
- fixed bug #13308: do not rely on autoload (PHP4 fix)&lt;br /&gt;
- fixed bug #13694: quoting identifiers is not working with CAST()&lt;br /&gt;
- fixed bug 14160: INSERT Fails with MDB2 under certain circumstances&lt;br /&gt;
- fixed bug #14862: Call to undefined method MDB_Error::tableinfo() [doconnor]&lt;br /&gt;
- Bug #13388 -&gt;add with mdb2 and mysql v5.0&lt;br /&gt;
- Bug #14863 Fatal error: Call to a member function quoteIdentifier() on a non-object&lt;br /&gt;
- #14943 setSelet or addSelect incorrectly quotes function expression&lt;br /&gt;
- Bug #19217 get unit tests working&lt;br /&gt;
- Bug #19218 _localeSafeImplode() broken for NULL / empty strings
 </content:encoded>
 <dc:date>2012-04-11T23:03:30-05:00</dc:date>
 <dc:publisher>doconnor</dc:publisher>
</item>
<item rdf:about="http://pear.php.net/package/MDB_QueryTool/download/1.2.2/">
 <title>MDB_QueryTool 1.2.2</title>
 <link>http://pear.php.net/package/MDB_QueryTool/download/1.2.2/</link>
 <content:encoded>- fixed bug #12353: identifier quoting with functions in _buildSelect()&lt;br /&gt;
- better identifier quoting in _buildFrom()&lt;br /&gt;
- Coding Standards fixes
 </content:encoded>
 <dc:date>2008-01-12T08:12:31-05:00</dc:date>
 <dc:publisher>quipo</dc:publisher>
</item>
<item rdf:about="http://pear.php.net/package/MDB_QueryTool/download/1.2.1/">
 <title>MDB_QueryTool 1.2.1</title>
 <link>http://pear.php.net/package/MDB_QueryTool/download/1.2.1/</link>
 <content:encoded>- fixed bug #9963: Quoting problem with COUNT(*)&lt;br /&gt;
- fixed bug #10073: bug with empty() and 0 in _localeSafeImplode()&lt;br /&gt;
- fixed bug #10890: warning with addMultiple() when no PRIMARY KEY is set&lt;br /&gt;
- Coding Standards fixes
 </content:encoded>
 <dc:date>2008-01-12T05:45:29-05:00</dc:date>
 <dc:publisher>quipo</dc:publisher>
</item>
<item rdf:about="http://pear.php.net/package/MDB_QueryTool/download/1.2.0/">
 <title>MDB_QueryTool 1.2.0</title>
 <link>http://pear.php.net/package/MDB_QueryTool/download/1.2.0/</link>
 <content:encoded>- added getOne() method (request #7580)&lt;br /&gt;
- custom implementation of implode() to circumvent locale handling of floats,&lt;br /&gt;
  which clashes with SQL standards (thanks to Lukas Ruetz)&lt;br /&gt;
- fixed bug #7909: different names for nextId()/nextID() in MDB and MDB2&lt;br /&gt;
- request #8056: add support for NULL fields in remove()&lt;br /&gt;
- fixed bug #8319: add $options['idxname_format'] to connect() to bypass&lt;br /&gt;
  MDB2 default index format&lt;br /&gt;
- added save() method to MDB_QueryTool_Result_Row (Elmar)&lt;br /&gt;
- fixed handling of returned values in MDB_QueryTool_Result&lt;br /&gt;
- added getFirst(), getNext() and hasMore() methods to MDB_QueryTool_Result_Object&lt;br /&gt;
- added support for custom return classes (Elmar)&lt;br /&gt;
- added table and field name quoting (requests #4613, #5250, #7570, #9197) (Elmar)&lt;br /&gt;
- fixed bug #9734, an incorrect regexp adds extraneous table names to the fields,&lt;br /&gt;
  if the name of the field appears as a column name in the current table.&lt;br /&gt;
- added new tests&lt;br /&gt;
- switched to package.xml v2
 </content:encoded>
 <dc:date>2007-01-27T14:13:10-05:00</dc:date>
 <dc:publisher>quipo</dc:publisher>
</item>
<item rdf:about="http://pear.php.net/package/MDB_QueryTool/download/1.1.1/">
 <title>MDB_QueryTool 1.1.1</title>
 <link>http://pear.php.net/package/MDB_QueryTool/download/1.1.1/</link>
 <content:encoded>- fixed MDB_QueryTool_Result_Object::fetchRow() when the return type is&lt;br /&gt;
  a scalar value instead of an array (bug #7532)
 </content:encoded>
 <dc:date>2006-05-01T11:50:26-05:00</dc:date>
 <dc:publisher>quipo</dc:publisher>
</item>
<item rdf:about="http://pear.php.net/package/MDB_QueryTool/download/1.1.0/">
 <title>MDB_QueryTool 1.1.0</title>
 <link>http://pear.php.net/package/MDB_QueryTool/download/1.1.0/</link>
 <content:encoded>- added MDB2 support. Just set $MDBversion = 2 as the third parameter&lt;br /&gt;
of the constructor, and QueryTool will use MDB2 as the backend instead&lt;br /&gt;
of MDB (thanks to Lukas Smith).
 </content:encoded>
 <dc:date>2006-04-08T06:46:14-05:00</dc:date>
 <dc:publisher>quipo</dc:publisher>
</item>
<item rdf:about="http://pear.php.net/package/MDB_QueryTool/download/1.0.2/">
 <title>MDB_QueryTool 1.0.2</title>
 <link>http://pear.php.net/package/MDB_QueryTool/download/1.0.2/</link>
 <content:encoded>- changed license to BSD&lt;br /&gt;
- fixed bug with big integers being incorrectly trimmed
 </content:encoded>
 <dc:date>2006-01-26T14:14:17-05:00</dc:date>
 <dc:publisher>quipo</dc:publisher>
</item>
<item rdf:about="http://pear.php.net/package/MDB_QueryTool/download/1.0.1/">
 <title>MDB_QueryTool 1.0.1</title>
 <link>http://pear.php.net/package/MDB_QueryTool/download/1.0.1/</link>
 <content:encoded>- added support for INNER JOINs (req #3842)&lt;br /&gt;
- fixed bug #3842, using the addJoin/setJoin methods causes an &quot;invalid token&quot;&lt;br /&gt;
  error with ibase; the joined table columns aliases are now named in this&lt;br /&gt;
  format: &quot;t_tablename_fieldname&quot; instead of &quot;_tablename_fieldname&quot;.&lt;br /&gt;
  Only the ibase driver is affected by this change.&lt;br /&gt;
- fixed notice (bug #3925)&lt;br /&gt;
- fixed pass-by-reference error with PHP 5.1 (thanks to Dmitry Shirokov)&lt;br /&gt;
- added new tests
 </content:encoded>
 <dc:date>2005-09-08T13:43:20-05:00</dc:date>
 <dc:publisher>quipo</dc:publisher>
</item>
<item rdf:about="http://pear.php.net/package/MDB_QueryTool/download/1.0.0/">
 <title>MDB_QueryTool 1.0.0</title>
 <link>http://pear.php.net/package/MDB_QueryTool/download/1.0.0/</link>
 <content:encoded>- fixed bug #3290, getCount() method returns zero when using an offset&lt;br /&gt;
  (patch by kubo at isite dot co dot jp)&lt;br /&gt;
- fixed bug #3518, Error in _quote when you use raw option = true&lt;br /&gt;
- strings lenghtier than the column max size are truncated&lt;br /&gt;
  to prevent db errors&lt;br /&gt;
- using setOrder() with setGroup()+setHaving() could cause a malformed query&lt;br /&gt;
- fully tested with MySQL, PostgreSQL and Firebird/Interbase&lt;br /&gt;
  (added a new testsuite using SimpleTest)
 </content:encoded>
 <dc:date>2005-03-03T11:05:20-05:00</dc:date>
 <dc:publisher>quipo</dc:publisher>
</item>
<item rdf:about="http://pear.php.net/package/MDB_QueryTool/download/0.11.1/">
 <title>MDB_QueryTool 0.11.1</title>
 <link>http://pear.php.net/package/MDB_QueryTool/download/0.11.1/</link>
 <content:encoded>- allow multiple left|right join clauses.&lt;br /&gt;
  NB: getJoin($type) now returns&lt;br /&gt;
  array(&lt;br /&gt;
     $joinTable1 =&gt; $joinOnClause1,&lt;br /&gt;
     $joinTable2 =&gt; $joinOnClause2,&lt;br /&gt;
  )&lt;br /&gt;
- allow class usage without instanciating a db object&lt;br /&gt;
  (to use the class as a simple query builder)&lt;br /&gt;
- unset non-specific PEAR::DB options before calling connect()&lt;br /&gt;
  (bug #1614)&lt;br /&gt;
- allow reuse of existing connection (bug #2007),&lt;br /&gt;
  thanks to eln at gmx dot net
 </content:encoded>
 <dc:date>2004-10-18T11:17:49-05:00</dc:date>
 <dc:publisher>quipo</dc:publisher>
</item>

</rdf:RDF>