<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Zebra_Database, a MySQL database wrapper written in PHP</title>
	<atom:link href="http://stefangabos.ro/php-libraries/zebra-database/feed/" rel="self" type="application/rss+xml" />
	<link>http://stefangabos.ro</link>
	<description>web developer extraordinaire</description>
	<lastBuildDate>Fri, 17 May 2013 06:02:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Stefan Gabos</title>
		<link>http://stefangabos.ro/php-libraries/zebra-database/comment-page-5/#comment-3586</link>
		<dc:creator>Stefan Gabos</dc:creator>
		<pubDate>Wed, 15 May 2013 06:46:31 +0000</pubDate>
		<guid isPermaLink="false">http://stefangabos.ro/#comment-3586</guid>
		<description><![CDATA[hmmm, indeed that&#039;s not possible, but I&#039;ll add it in the next release; until then, you&#039;ll have to hack Zebra_Database.php and edit the content of the &quot;_connected&quot; private function, at line 3895]]></description>
		<content:encoded><![CDATA[<p>hmmm, indeed that&#8217;s not possible, but I&#8217;ll add it in the next release; until then, you&#8217;ll have to hack Zebra_Database.php and edit the content of the &#8220;_connected&#8221; private function, at line 3895</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Corey</title>
		<link>http://stefangabos.ro/php-libraries/zebra-database/comment-page-5/#comment-3576</link>
		<dc:creator>Corey</dc:creator>
		<pubDate>Tue, 14 May 2013 16:03:12 +0000</pubDate>
		<guid isPermaLink="false">http://stefangabos.ro/#comment-3576</guid>
		<description><![CDATA[Thanks for the comprehensive class!  One thing I noticed is the lack of being able to specify the MySQL port to connect to.  Am I just blind?]]></description>
		<content:encoded><![CDATA[<p>Thanks for the comprehensive class!  One thing I noticed is the lack of being able to specify the MySQL port to connect to.  Am I just blind?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prathamesh Gharat</title>
		<link>http://stefangabos.ro/php-libraries/zebra-database/comment-page-5/#comment-3555</link>
		<dc:creator>Prathamesh Gharat</dc:creator>
		<pubDate>Sat, 11 May 2013 06:41:58 +0000</pubDate>
		<guid isPermaLink="false">http://stefangabos.ro/#comment-3555</guid>
		<description><![CDATA[Hi,
First of all, real nice work with the script. Makes life a easier :)

Second, I came across a small bug with the documentation.

http://stefangabos.ro/wp-content/docs/Zebra_Database/Zebra_Database/Zebra_Database.html#methodselect

Mentions the parameter order as
mixed select ( string $columns , string $table , [ string $where = &#039;&#039;] , [ array $replacements = &#039;&#039;] , [ string $order = &#039;&#039;] , [ mixed $limit = &#039;&#039;] , [ mixed $cache = false] , [ boolean $highlight = false] , [ boolean $calc_rows = false] ) 

The $highlight and $calc_rows got mixed up there.
It should have been 
mixed select ( string $columns , string $table , [ string $where = &#039;&#039;] , [ array $replacements = &#039;&#039;] , [ string $order = &#039;&#039;] , [ mixed $limit = &#039;&#039;] , [ mixed $cache = false] , [ boolean $calc_rows = false] , [ boolean $highlight = false] )]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
First of all, real nice work with the script. Makes life a easier <img src='http://stefangabos.ro/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Second, I came across a small bug with the documentation.</p>
<p><a href="http://stefangabos.ro/wp-content/docs/Zebra_Database/Zebra_Database/Zebra_Database.html#methodselect" rel="nofollow">http://stefangabos.ro/wp-content/docs/Zebra_Database/Zebra_Database/Zebra_Database.html#methodselect</a></p>
<p>Mentions the parameter order as<br />
mixed select ( string $columns , string $table , [ string $where = ''] , [ array $replacements = ''] , [ string $order = ''] , [ mixed $limit = ''] , [ mixed $cache = false] , [ boolean $highlight = false] , [ boolean $calc_rows = false] ) </p>
<p>The $highlight and $calc_rows got mixed up there.<br />
It should have been<br />
mixed select ( string $columns , string $table , [ string $where = ''] , [ array $replacements = ''] , [ string $order = ''] , [ mixed $limit = ''] , [ mixed $cache = false] , [ boolean $calc_rows = false] , [ boolean $highlight = false] )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Gabos</title>
		<link>http://stefangabos.ro/php-libraries/zebra-database/comment-page-4/#comment-3373</link>
		<dc:creator>Stefan Gabos</dc:creator>
		<pubDate>Fri, 26 Apr 2013 07:08:04 +0000</pubDate>
		<guid isPermaLink="false">http://stefangabos.ro/#comment-3373</guid>
		<description><![CDATA[thanks!]]></description>
		<content:encoded><![CDATA[<p>thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://stefangabos.ro/php-libraries/zebra-database/comment-page-4/#comment-3370</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Fri, 26 Apr 2013 01:47:03 +0000</pubDate>
		<guid isPermaLink="false">http://stefangabos.ro/#comment-3370</guid>
		<description><![CDATA[Never mind.  I just figure out how to do the insert_bulk() dynamically.  I just needed to put an array of arrays into a variable and pass that.  Your software is awesome! Thanks.  

You know, have you considered creating a forum so people could help each other?]]></description>
		<content:encoded><![CDATA[<p>Never mind.  I just figure out how to do the insert_bulk() dynamically.  I just needed to put an array of arrays into a variable and pass that.  Your software is awesome! Thanks.  </p>
<p>You know, have you considered creating a forum so people could help each other?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://stefangabos.ro/php-libraries/zebra-database/comment-page-4/#comment-3369</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Thu, 25 Apr 2013 21:16:46 +0000</pubDate>
		<guid isPermaLink="false">http://stefangabos.ro/#comment-3369</guid>
		<description><![CDATA[Just want to let you know you have a couple of typos in your insert_bulk() documentation.  You&#039;ve got one too many close parentheses and the text that reads, &quot;return: Returns TRUE on success of FALSE on error.&quot;  Should read as, &quot;return: Returns TRUE on success or FALSE on error.&quot;]]></description>
		<content:encoded><![CDATA[<p>Just want to let you know you have a couple of typos in your insert_bulk() documentation.  You&#8217;ve got one too many close parentheses and the text that reads, &#8220;return: Returns TRUE on success of FALSE on error.&#8221;  Should read as, &#8220;return: Returns TRUE on success or FALSE on error.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://stefangabos.ro/php-libraries/zebra-database/comment-page-4/#comment-3368</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Thu, 25 Apr 2013 20:58:35 +0000</pubDate>
		<guid isPermaLink="false">http://stefangabos.ro/#comment-3368</guid>
		<description><![CDATA[Thank you for answering my question on the limit issue.

I&#039;m trying to use the insert_bulk() feature and I have an unknown number if items that I need to insert.  I can loop through them or put them in an array, but how can I code the insert_bulk() statement to accept a non-deterministic number of rows for insert?

Thanks!]]></description>
		<content:encoded><![CDATA[<p>Thank you for answering my question on the limit issue.</p>
<p>I&#8217;m trying to use the insert_bulk() feature and I have an unknown number if items that I need to insert.  I can loop through them or put them in an array, but how can I code the insert_bulk() statement to accept a non-deterministic number of rows for insert?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Gabos</title>
		<link>http://stefangabos.ro/php-libraries/zebra-database/comment-page-4/#comment-3357</link>
		<dc:creator>Stefan Gabos</dc:creator>
		<pubDate>Thu, 25 Apr 2013 06:25:44 +0000</pubDate>
		<guid isPermaLink="false">http://stefangabos.ro/#comment-3357</guid>
		<description><![CDATA[give it a try :) but as long as you have the correct settings in MySQL (well, and mayber some proper headers in PHP) I don&#039;t think you should have problems]]></description>
		<content:encoded><![CDATA[<p>give it a try <img src='http://stefangabos.ro/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  but as long as you have the correct settings in MySQL (well, and mayber some proper headers in PHP) I don&#8217;t think you should have problems</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rudra</title>
		<link>http://stefangabos.ro/php-libraries/zebra-database/comment-page-4/#comment-3352</link>
		<dc:creator>rudra</dc:creator>
		<pubDate>Thu, 25 Apr 2013 05:27:01 +0000</pubDate>
		<guid isPermaLink="false">http://stefangabos.ro/#comment-3352</guid>
		<description><![CDATA[How this handles arabic text, description ?
Actually i am making project in both language , i am going to work with CMS in English as well as in Arabic.
Thanks in advance ........]]></description>
		<content:encoded><![CDATA[<p>How this handles arabic text, description ?<br />
Actually i am making project in both language , i am going to work with CMS in English as well as in Arabic.<br />
Thanks in advance &#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Gabos</title>
		<link>http://stefangabos.ro/php-libraries/zebra-database/comment-page-4/#comment-3268</link>
		<dc:creator>Stefan Gabos</dc:creator>
		<pubDate>Wed, 17 Apr 2013 17:10:58 +0000</pubDate>
		<guid isPermaLink="false">http://stefangabos.ro/#comment-3268</guid>
		<description><![CDATA[unfortunately, you&#039;ll have to do something like
&lt;pre&gt;&lt;code&gt;$db-&gt;query(&#039;
    SELECT 
        * 
    FROM 
        table 
        INNER JOIN (
            SELECT 
                * 
            FROM 
                other_table 
            LIMIT &#039; . $db-&gt;escape($value) . &#039;)
&#039;);&lt;/code&gt;&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>unfortunately, you&#8217;ll have to do something like</p>
<pre><code>$db->query('
    SELECT 
        * 
    FROM 
        table 
        INNER JOIN (
            SELECT 
                * 
            FROM 
                other_table 
            LIMIT ' . $db->escape($value) . ')
');</code></pre>
]]></content:encoded>
	</item>
</channel>
</rss>
