<?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"
	>
<channel>
	<title>Comments for Alan deLevie</title>
	<atom:link href="http://www.alandelevie.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alandelevie.com</link>
	<description>The website of Alan deLevie</description>
	<pubDate>Thu, 11 Mar 2010 04:39:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Comment on (Another) simple web.py wiki by unkown</title>
		<link>http://www.alandelevie.com/2008/12/27/another-simple-webpy-wiki/#comment-564</link>
		<dc:creator>unkown</dc:creator>
		<pubDate>Thu, 04 Mar 2010 21:51:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.alandelevie.com/?p=213#comment-564</guid>
		<description>thanks but where is the database schema ?!
i would like to try it</description>
		<content:encoded><![CDATA[<p>thanks but where is the database schema ?!<br />
i would like to try it</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Recursion-less storage of hierarchical data in a relational database by Twitter Trackbacks for Alan deLevie - Recursion-less storage of hierarchical data in a relational database [alandelevie.com] on Topsy.com</title>
		<link>http://www.alandelevie.com/2008/07/12/recursion-less-storage-of-hierarchical-data-in-a-relational-database/#comment-551</link>
		<dc:creator>Twitter Trackbacks for Alan deLevie - Recursion-less storage of hierarchical data in a relational database [alandelevie.com] on Topsy.com</dc:creator>
		<pubDate>Tue, 09 Feb 2010 16:29:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.alandelevie.com/?p=11#comment-551</guid>
		<description>[...] Alan deLevie - Recursion-less storage of hierarchical data in a relational database  www.alandelevie.com/2008/07/12/recursion-less-storage-of-hierarchical-data-in-a-relational-database &#8211; view page &#8211; cached  One of the main problems with using a relational database such as MySQL is that it can be tricky to store and retrieve hierarchical information. [...]</description>
		<content:encoded><![CDATA[<p>[...] Alan deLevie - Recursion-less storage of hierarchical data in a relational database  <a href="http://www.alandelevie.com/2008/07/12/recursion-less-storage-of-hierarchical-data-in-a-relational-database"  rel="nofollow">http://www.alandelevie.com/2008/07/12/recursion-less-storage-of-hierarchical-data-in-a-relational-database</a> &ndash; view page &ndash; cached  One of the main problems with using a relational database such as MySQL is that it can be tricky to store and retrieve hierarchical information. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on From ActiveRecord to Raw SQL by admin</title>
		<link>http://www.alandelevie.com/2009/11/19/from-activerecord-to-raw-sql/#comment-546</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 28 Jan 2010 01:10:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.alandelevie.com/?p=337#comment-546</guid>
		<description>2.3.3--but that shouldn't have anything to do with it. 

You're absolutely right, any finder method will return an array of objects. And you're right again about find_by_sql. I was probably thinking of ActiveRecord::Base.connection.execute('SELECT * FROM users') (source=http://www.rabbitcreative.com/2007/06/08/executing-raw-sql-in-rails/) which returns mysql objects whose attributes are returned using a hash. 

But thanks for the correction--I updated the post.</description>
		<content:encoded><![CDATA[<p>2.3.3&#8211;but that shouldn&#8217;t have anything to do with it. </p>
<p>You&#8217;re absolutely right, any finder method will return an array of objects. And you&#8217;re right again about find_by_sql. I was probably thinking of ActiveRecord::Base.connection.execute(&#8217;SELECT * FROM users&#8217;) (source=http://www.rabbitcreative.com/2007/06/08/executing-raw-sql-in-rails/) which returns mysql objects whose attributes are returned using a hash. </p>
<p>But thanks for the correction&#8211;I updated the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on From ActiveRecord to Raw SQL by Andrew</title>
		<link>http://www.alandelevie.com/2009/11/19/from-activerecord-to-raw-sql/#comment-545</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Wed, 27 Jan 2010 07:46:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.alandelevie.com/?p=337#comment-545</guid>
		<description>Hi,

What version of Rails are you using? I've never known find_by_sql to return anything other than an array of model objects. I don't even see how it's possible @posts could be a hash as they would be unordered and you also subsequently access it via an integer key (which is possible but unusual for a Hash).

Regards,
Andrew</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>What version of Rails are you using? I&#8217;ve never known find_by_sql to return anything other than an array of model objects. I don&#8217;t even see how it&#8217;s possible @posts could be a hash as they would be unordered and you also subsequently access it via an integer key (which is possible but unusual for a Hash).</p>
<p>Regards,<br />
Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Demystifying eager loading with ActiveRecord by admin</title>
		<link>http://www.alandelevie.com/2010/01/26/demystifying-eager-loading-with-activerecord/#comment-544</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 26 Jan 2010 18:15:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.alandelevie.com/?p=362#comment-544</guid>
		<description>I don't know what proficiency level of Ruby/Rails you guys are, but it seems that you have at least a decent amount of experience. It also seems that eager loading already makes sense to you. 

I started Rails last summer and one of my development partners just started Rails about a month ago. Eager loading "clicked" for me a few weeks ago, and clicked for my partner yesterday.

The docs do not provide a complete picture as they only show *some* of the associations. It is up to the seasoned Rails developer to assume the rest of them. (FYI, I'm not criticizing the docs--I like them a lot.)

I filled in a few small missing pieces that for at least me and one other person, made a huge difference. I don't know about you, but I spend a good deal of my debugging time trying to fix problems whose solutions are small, often, trivial changes. 

When first picking up Ruby/Rails, it is often the small things that bog down learning: "What are those @-signs for? or those colons? When do I use them?" A short and simple explanation is all that is needed to get the new learner back on his/her feet. But without such an explanation s/he could be stuck for hours instead of minutes.

The length of the solution does not necessarily determine the significance of the problem.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know what proficiency level of Ruby/Rails you guys are, but it seems that you have at least a decent amount of experience. It also seems that eager loading already makes sense to you. </p>
<p>I started Rails last summer and one of my development partners just started Rails about a month ago. Eager loading &#8220;clicked&#8221; for me a few weeks ago, and clicked for my partner yesterday.</p>
<p>The docs do not provide a complete picture as they only show *some* of the associations. It is up to the seasoned Rails developer to assume the rest of them. (FYI, I&#8217;m not criticizing the docs&#8211;I like them a lot.)</p>
<p>I filled in a few small missing pieces that for at least me and one other person, made a huge difference. I don&#8217;t know about you, but I spend a good deal of my debugging time trying to fix problems whose solutions are small, often, trivial changes. </p>
<p>When first picking up Ruby/Rails, it is often the small things that bog down learning: &#8220;What are those @-signs for? or those colons? When do I use them?&#8221; A short and simple explanation is all that is needed to get the new learner back on his/her feet. But without such an explanation s/he could be stuck for hours instead of minutes.</p>
<p>The length of the solution does not necessarily determine the significance of the problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Demystifying eager loading with ActiveRecord by Some Guy</title>
		<link>http://www.alandelevie.com/2010/01/26/demystifying-eager-loading-with-activerecord/#comment-543</link>
		<dc:creator>Some Guy</dc:creator>
		<pubDate>Tue, 26 Jan 2010 17:34:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.alandelevie.com/?p=362#comment-543</guid>
		<description>What is the point of this blog entry?  All it does is restate, verbatim, the development docs, and a provide trivial example.</description>
		<content:encoded><![CDATA[<p>What is the point of this blog entry?  All it does is restate, verbatim, the development docs, and a provide trivial example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Demystifying eager loading with ActiveRecord by Trent C.</title>
		<link>http://www.alandelevie.com/2010/01/26/demystifying-eager-loading-with-activerecord/#comment-542</link>
		<dc:creator>Trent C.</dc:creator>
		<pubDate>Tue, 26 Jan 2010 17:34:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.alandelevie.com/?p=362#comment-542</guid>
		<description>I have to agree with the first comment. This doesn't make anything more clear. There is no explanation of any kind, so the title is misleading, since if someone is mystified by something, they will probably not be demystified without an explanation of some kind.

This reads more like an "Aha! When I looked at this, I suddenly understood." If someone is really mystified by eager loading, they are probably not going to suddenly understand anything from this article.</description>
		<content:encoded><![CDATA[<p>I have to agree with the first comment. This doesn&#8217;t make anything more clear. There is no explanation of any kind, so the title is misleading, since if someone is mystified by something, they will probably not be demystified without an explanation of some kind.</p>
<p>This reads more like an &#8220;Aha! When I looked at this, I suddenly understood.&#8221; If someone is really mystified by eager loading, they are probably not going to suddenly understand anything from this article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Demystifying eager loading with ActiveRecord by admin</title>
		<link>http://www.alandelevie.com/2010/01/26/demystifying-eager-loading-with-activerecord/#comment-541</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 26 Jan 2010 15:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.alandelevie.com/?p=362#comment-541</guid>
		<description>It helped me a lot as well as someone I work with. 

But do let me know what you don't understand, I'd be glad to try and help.

-Alan</description>
		<content:encoded><![CDATA[<p>It helped me a lot as well as someone I work with. </p>
<p>But do let me know what you don&#8217;t understand, I&#8217;d be glad to try and help.</p>
<p>-Alan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Demystifying eager loading with ActiveRecord by Thierry B.</title>
		<link>http://www.alandelevie.com/2010/01/26/demystifying-eager-loading-with-activerecord/#comment-540</link>
		<dc:creator>Thierry B.</dc:creator>
		<pubDate>Tue, 26 Jan 2010 10:46:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.alandelevie.com/?p=362#comment-540</guid>
		<description>Sorry, but your explanation is too short. It doesn't make it clearer</description>
		<content:encoded><![CDATA[<p>Sorry, but your explanation is too short. It doesn&#8217;t make it clearer</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Better project template for Google App Engine by j conroy</title>
		<link>http://www.alandelevie.com/2009/03/13/better-project-template-for-google-app-engine/#comment-536</link>
		<dc:creator>j conroy</dc:creator>
		<pubDate>Wed, 06 Jan 2010 01:40:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.alandelevie.com/?p=284#comment-536</guid>
		<description>Thanks-- much appreciated. you've saved a bit of time for me here regarding headers and includes (ie getting BSoup to work properly first time on GAE) ;)</description>
		<content:encoded><![CDATA[<p>Thanks&#8211; much appreciated. you&#8217;ve saved a bit of time for me here regarding headers and includes (ie getting BSoup to work properly first time on GAE) <img src='http://www.alandelevie.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>
