<?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 for ChrisRenner.com</title>
	<atom:link href="http://www.chrisrenner.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chrisrenner.com</link>
	<description>Thoughts on PHP, MySQL and JavaScript/AJAX Web Development</description>
	<lastBuildDate>Wed, 25 Aug 2010 23:08:44 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on The problem with Database Abstraction Layers&#8230; by Chris  Renner</title>
		<link>http://www.chrisrenner.com/2009/09/the-problem-with-database-abstraction-layers/comment-page-1/#comment-275</link>
		<dc:creator>Chris  Renner</dc:creator>
		<pubDate>Wed, 25 Aug 2010 23:08:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrisrenner.com/?p=180#comment-275</guid>
		<description>Thanks for the comments Dan.  I&#039;ve actually begun using Zend_Db in the past couple of months and its growing on me rapidly. Once you get comfortable with the syntax it is not much more trouble than writing raw SQL, and I like the prepared statement features you get when using the PDO_MySql adapter.  The inclusion of PDO was more or less from ignorance, and if I wrote the article fresh today there&#039;s quite a bit I could write differently.</description>
		<content:encoded><![CDATA[<p>Thanks for the comments Dan.  I&#8217;ve actually begun using Zend_Db in the past couple of months and its growing on me rapidly. Once you get comfortable with the syntax it is not much more trouble than writing raw SQL, and I like the prepared statement features you get when using the PDO_MySql adapter.  The inclusion of PDO was more or less from ignorance, and if I wrote the article fresh today there&#8217;s quite a bit I could write differently.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The problem with Database Abstraction Layers&#8230; by Dan</title>
		<link>http://www.chrisrenner.com/2009/09/the-problem-with-database-abstraction-layers/comment-page-1/#comment-274</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Wed, 18 Aug 2010 11:22:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrisrenner.com/?p=180#comment-274</guid>
		<description>&quot;Larger databases will see huge hits on performance if you try to return only primary keys for a result set, and then loop through the keys, creating an object for each&quot;

I don&#039;t know about other DALs, but Zend DB at least does not do that. If you do a fetchAll query for example, each row object is created from the data in the result set.

Also, not sure why you&#039;ve mentioned PDO as a DAL - it has more or less exactly the same functionality as the php mysql_ functions, but in an object orientated manner.</description>
		<content:encoded><![CDATA[<p>&#8220;Larger databases will see huge hits on performance if you try to return only primary keys for a result set, and then loop through the keys, creating an object for each&#8221;</p>
<p>I don&#8217;t know about other DALs, but Zend DB at least does not do that. If you do a fetchAll query for example, each row object is created from the data in the result set.</p>
<p>Also, not sure why you&#8217;ve mentioned PDO as a DAL &#8211; it has more or less exactly the same functionality as the php mysql_ functions, but in an object orientated manner.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Toggle Table Rows with jQuery, no plug-in required by Chris  Renner</title>
		<link>http://www.chrisrenner.com/2010/03/toggle-table-rows-with-jquery-no-plug-in-required/comment-page-1/#comment-256</link>
		<dc:creator>Chris  Renner</dc:creator>
		<pubDate>Sun, 11 Jul 2010 12:57:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrisrenner.com/?p=321#comment-256</guid>
		<description>Hey Trent,

I don&#039;t consider a little client side JS very expensive, unless perhaps the client is IE6 running on a Pentium 3 or some such. Most of my apps are MySQL driven, and though MySQL supports views, they are very inefficient as compared to the way views are implemented in, say, Oracle.  I tend to prefer to minimize database transactions, since such actions produce noticeable slow downs in page load time.  

Oh, and really cool to hear from you!</description>
		<content:encoded><![CDATA[<p>Hey Trent,</p>
<p>I don&#8217;t consider a little client side JS very expensive, unless perhaps the client is IE6 running on a Pentium 3 or some such. Most of my apps are MySQL driven, and though MySQL supports views, they are very inefficient as compared to the way views are implemented in, say, Oracle.  I tend to prefer to minimize database transactions, since such actions produce noticeable slow downs in page load time.  </p>
<p>Oh, and really cool to hear from you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Toggle Table Rows with jQuery, no plug-in required by Trent</title>
		<link>http://www.chrisrenner.com/2010/03/toggle-table-rows-with-jquery-no-plug-in-required/comment-page-1/#comment-255</link>
		<dc:creator>Trent</dc:creator>
		<pubDate>Sun, 11 Jul 2010 05:08:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrisrenner.com/?p=321#comment-255</guid>
		<description>It&#039;s interesting you chose to tackle the problem on the client-side.  Have you considered creating a view to handle the table concatenation, and then using the view for your web app?  The view only gets updated when the underlying tables are updated, and you save all the expensive query overhead your app is putting on the system.</description>
		<content:encoded><![CDATA[<p>It&#8217;s interesting you chose to tackle the problem on the client-side.  Have you considered creating a view to handle the table concatenation, and then using the view for your web app?  The view only gets updated when the underlying tables are updated, and you save all the expensive query overhead your app is putting on the system.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Never Use $_GET Again by Chris  Renner</title>
		<link>http://www.chrisrenner.com/2010/07/never-use-_get-again/comment-page-1/#comment-254</link>
		<dc:creator>Chris  Renner</dc:creator>
		<pubDate>Fri, 09 Jul 2010 17:12:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrisrenner.com/?p=326#comment-254</guid>
		<description>Thanks. Fixed!</description>
		<content:encoded><![CDATA[<p>Thanks. Fixed!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Never Use $_GET Again by stelle</title>
		<link>http://www.chrisrenner.com/2010/07/never-use-_get-again/comment-page-1/#comment-253</link>
		<dc:creator>stelle</dc:creator>
		<pubDate>Fri, 09 Jul 2010 16:36:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrisrenner.com/?p=326#comment-253</guid>
		<description>the link is broken</description>
		<content:encoded><![CDATA[<p>the link is broken</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Gerrymandered Code: Extending Zend_Registry to globalize session vars by XPerez</title>
		<link>http://www.chrisrenner.com/2010/01/gerrymandered-code-using-zend_registry-to-globalize-session-vars/comment-page-1/#comment-251</link>
		<dc:creator>XPerez</dc:creator>
		<pubDate>Thu, 03 Jun 2010 08:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrisrenner.com/?p=293#comment-251</guid>
		<description>Sorry, I forgot to include the url for datastorage clas:

http://code.google.com/p/datastorage/

Xavier Pérez</description>
		<content:encoded><![CDATA[<p>Sorry, I forgot to include the url for datastorage clas:</p>
<p><a href="http://code.google.com/p/datastorage/" rel="nofollow">http://code.google.com/p/datastorage/</a></p>
<p>Xavier Pérez</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Gerrymandered Code: Extending Zend_Registry to globalize session vars by XPerez</title>
		<link>http://www.chrisrenner.com/2010/01/gerrymandered-code-using-zend_registry-to-globalize-session-vars/comment-page-1/#comment-250</link>
		<dc:creator>XPerez</dc:creator>
		<pubDate>Thu, 03 Jun 2010 08:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrisrenner.com/?p=293#comment-250</guid>
		<description>Hi Chris.

Recently, I have created a new singleton class (datastorage), similar as Zend_Registry, but with namespaces and persistence included.

Would be interesting in extends Zend_Registry to make the same as my datastorage class ? Can be done ?

Thanks,

Xavier Pérez</description>
		<content:encoded><![CDATA[<p>Hi Chris.</p>
<p>Recently, I have created a new singleton class (datastorage), similar as Zend_Registry, but with namespaces and persistence included.</p>
<p>Would be interesting in extends Zend_Registry to make the same as my datastorage class ? Can be done ?</p>
<p>Thanks,</p>
<p>Xavier Pérez</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Gerrymandered Code: Extending Zend_Registry to globalize session vars by Chris  Renner</title>
		<link>http://www.chrisrenner.com/2010/01/gerrymandered-code-using-zend_registry-to-globalize-session-vars/comment-page-1/#comment-247</link>
		<dc:creator>Chris  Renner</dc:creator>
		<pubDate>Wed, 05 May 2010 12:17:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrisrenner.com/?p=293#comment-247</guid>
		<description>I had to go back and check what ZF version I&#039;m running...and it happens to be 1.10.3

Latest is 1.10.4 but it doesn&#039;t look like there were any changes to Zend_Session on the latest release.  

So far there&#039;s no issues between my extension class and ZF 1.10</description>
		<content:encoded><![CDATA[<p>I had to go back and check what ZF version I&#8217;m running&#8230;and it happens to be 1.10.3</p>
<p>Latest is 1.10.4 but it doesn&#8217;t look like there were any changes to Zend_Session on the latest release.  </p>
<p>So far there&#8217;s no issues between my extension class and ZF 1.10</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Gerrymandered Code: Extending Zend_Registry to globalize session vars by Chris  Renner</title>
		<link>http://www.chrisrenner.com/2010/01/gerrymandered-code-using-zend_registry-to-globalize-session-vars/comment-page-1/#comment-246</link>
		<dc:creator>Chris  Renner</dc:creator>
		<pubDate>Tue, 04 May 2010 19:04:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.chrisrenner.com/?p=293#comment-246</guid>
		<description>No but I&#039;ll work with it and let you know.</description>
		<content:encoded><![CDATA[<p>No but I&#8217;ll work with it and let you know.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
