<?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: Rails Relationships</title>
	<atom:link href="http://jonathanng.com/ruby-on-rails/rails-relationships/feed/" rel="self" type="application/rss+xml" />
	<link>http://jonathanng.com/ruby-on-rails/rails-relationships/</link>
	<description>code + culture</description>
	<lastBuildDate>Fri, 21 Jan 2011 19:11:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: RESTful design and the HTTP request &#124; jonathan ng</title>
		<link>http://jonathanng.com/ruby-on-rails/rails-relationships/comment-page-3/#comment-1077</link>
		<dc:creator>RESTful design and the HTTP request &#124; jonathan ng</dc:creator>
		<pubDate>Mon, 29 Nov 2010 09:16:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonathansng.com/?p=147#comment-1077</guid>
		<description>[...] The next tutorial has been published: Rails&#8217; Relationships [...]</description>
		<content:encoded><![CDATA[<div style="padding: 1em; padding-left: 20px; background-color: #FFFF95; color: darkred">
<p>[...] The next tutorial has been published: Rails&#8217; Relationships [...]</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gil Wright</title>
		<link>http://jonathanng.com/ruby-on-rails/rails-relationships/comment-page-3/#comment-790</link>
		<dc:creator>Gil Wright</dc:creator>
		<pubDate>Wed, 06 May 2009 09:54:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonathansng.com/?p=147#comment-790</guid>
		<description>I am hoping that I have not done something silly....&lt;br&gt;&lt;br&gt;Following the instructions to the letter, everything worked until I started fooling around with the html.erb files.&lt;br&gt;&lt;br&gt;When I look in the database, I can see the author_id field in the books table (it is empty for all records). When I restart the server, the changes made in the erb files do not appear.&lt;br&gt;&lt;br&gt;My original erb files looked like (just one part):&lt;br&gt;  &lt;p&gt;&lt;br&gt;    &lt;%= f.label :description %&gt;&lt;br /&gt;&lt;br&gt;    &lt;%= f.text_area :description %&gt;&lt;br&gt;  &lt;/p&gt;&lt;br&gt;&lt;br&gt;I added a new section that looked like:&lt;br&gt;  &lt;p&gt;&lt;br&gt;    &lt;%= f.label :author %&gt;&lt;br /&gt;&lt;br&gt;      &lt;%= collection_select(:book, :author_id,  Author.find(:all, :order =&gt; &quot;name&quot;) , :id, :name) %&gt;&lt;br&gt;  &lt;/p&gt;&lt;br&gt;&lt;br&gt;Nothing happened = I still see the old form (with two entry boxes, no author pick list). Flushed cache, restarted browser, restarted server. Nothing changes.&lt;br&gt;&lt;br&gt;I changed the entire file to match the one in the tutorial. Still nothing changes.&lt;br&gt;&lt;br&gt;Going out on a limb I tried changing the page title to:&lt;br&gt;&lt;h1&gt;New Improved Book Entry Page&lt;/h1&gt;&lt;br&gt;&lt;br&gt;Still nothing. Any hints apart from suggesting a brick wall to bang my head against?&lt;br&gt;&lt;br&gt;Thanks.</description>
		<content:encoded><![CDATA[<p>I am hoping that I have not done something silly&#8230;.</p>
<p>Following the instructions to the letter, everything worked until I started fooling around with the html.erb files.</p>
<p>When I look in the database, I can see the author_id field in the books table (it is empty for all records). When I restart the server, the changes made in the erb files do not appear.</p>
<p>My original erb files looked like (just one part):<br /> 
<p>    &lt;%= f.label :description %&gt;</p>
<p>    &lt;%= f.text_area :description %&gt;  </p>
<p>I added a new section that looked like:<br /> 
<p>    &lt;%= f.label :author %&gt;</p>
<p>      &lt;%= collection_select(:book, :author_id,  Author.find(:all, <img src='http://jonathanng.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> rder =&gt; &#8220;name&#8221;) , :id, :name) %&gt;  </p>
<p>Nothing happened = I still see the old form (with two entry boxes, no author pick list). Flushed cache, restarted browser, restarted server. Nothing changes.</p>
<p>I changed the entire file to match the one in the tutorial. Still nothing changes.</p>
<p>Going out on a limb I tried changing the page title to:<br />
<h1>New Improved Book Entry Page</h1>
<p>Still nothing. Any hints apart from suggesting a brick wall to bang my head against?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gil Wright</title>
		<link>http://jonathanng.com/ruby-on-rails/rails-relationships/comment-page-3/#comment-734</link>
		<dc:creator>Gil Wright</dc:creator>
		<pubDate>Wed, 06 May 2009 02:54:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonathansng.com/?p=147#comment-734</guid>
		<description>I am hoping that I have not done something silly....&lt;br&gt;&lt;br&gt;Following the instructions to the letter, everything worked until I started fooling around with the html.erb files.&lt;br&gt;&lt;br&gt;When I look in the database, I can see the author_id field in the books table (it is empty for all records). When I restart the server, the changes made in the erb files do not appear.&lt;br&gt;&lt;br&gt;My original erb files looked like (just one part):&lt;br&gt;  &lt;p&gt;&lt;br&gt;    &lt;%= f.label :description %&gt;&lt;br /&gt;&lt;br&gt;    &lt;%= f.text_area :description %&gt;&lt;br&gt;  &lt;/p&gt;&lt;br&gt;&lt;br&gt;I added a new section that looked like:&lt;br&gt;  &lt;p&gt;&lt;br&gt;    &lt;%= f.label :author %&gt;&lt;br /&gt;&lt;br&gt;      &lt;%= collection_select(:book, :author_id,  Author.find(:all, :order =&gt; &quot;name&quot;) , :id, :name) %&gt;&lt;br&gt;  &lt;/p&gt;&lt;br&gt;&lt;br&gt;Nothing happened = I still see the old form (with two entry boxes, no author pick list). Flushed cache, restarted browser, restarted server. Nothing changes.&lt;br&gt;&lt;br&gt;I changed the entire file to match the one in the tutorial. Still nothing changes.&lt;br&gt;&lt;br&gt;Going out on a limb I tried changing the page title to:&lt;br&gt;&lt;h1&gt;New Improved Book Entry Page&lt;/h1&gt;&lt;br&gt;&lt;br&gt;Still nothing. Any hints apart from suggesting a brick wall to bang my head against?&lt;br&gt;&lt;br&gt;Thanks.</description>
		<content:encoded><![CDATA[<p>I am hoping that I have not done something silly&#8230;.</p>
<p>Following the instructions to the letter, everything worked until I started fooling around with the html.erb files.</p>
<p>When I look in the database, I can see the author_id field in the books table (it is empty for all records). When I restart the server, the changes made in the erb files do not appear.</p>
<p>My original erb files looked like (just one part):<br /> 
<p>    &lt;%= f.label :description %&gt;</p>
<p>    &lt;%= f.text_area :description %&gt;  </p>
<p>I added a new section that looked like:<br /> 
<p>    &lt;%= f.label :author %&gt;</p>
<p>      &lt;%= collection_select(:book, :author_id,  Author.find(:all, <img src='http://jonathanng.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> rder =&gt; &#8220;name&#8221;) , :id, :name) %&gt;  </p>
<p>Nothing happened = I still see the old form (with two entry boxes, no author pick list). Flushed cache, restarted browser, restarted server. Nothing changes.</p>
<p>I changed the entire file to match the one in the tutorial. Still nothing changes.</p>
<p>Going out on a limb I tried changing the page title to:<br />&lt;h1&gt;New Improved Book Entry Page&lt;/h1&gt;</p>
<p>Still nothing. Any hints apart from suggesting a brick wall to bang my head against?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yas</title>
		<link>http://jonathanng.com/ruby-on-rails/rails-relationships/comment-page-3/#comment-719</link>
		<dc:creator>Yas</dc:creator>
		<pubDate>Wed, 18 Mar 2009 10:51:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonathansng.com/?p=147#comment-719</guid>
		<description>A great tutorial! I was trying to understand what a foreign_key does. Thanks for the explanation.</description>
		<content:encoded><![CDATA[<p>A great tutorial! I was trying to understand what a foreign_key does. Thanks for the explanation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Spence</title>
		<link>http://jonathanng.com/ruby-on-rails/rails-relationships/comment-page-3/#comment-1030</link>
		<dc:creator>Jim Spence</dc:creator>
		<pubDate>Wed, 27 Aug 2008 08:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonathansng.com/?p=147#comment-1030</guid>
		<description>Wednesday I was searching for blogs related to Web Promotion and specifically seo friendly cms and I found your related blog.</description>
		<content:encoded><![CDATA[<p>Wednesday I was searching for blogs related to Web Promotion and specifically seo friendly cms and I found your related blog.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kyeno</title>
		<link>http://jonathanng.com/ruby-on-rails/rails-relationships/comment-page-3/#comment-611</link>
		<dc:creator>Kyeno</dc:creator>
		<pubDate>Thu, 21 Aug 2008 22:40:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonathansng.com/?p=147#comment-611</guid>
		<description>Hi there!
I&#039;ve been through all of Your tutorials so far and i must say - You&#039;re the best. I&#039;m a classic LAMP developer who once decided to try switching to rails. I began with learning the Ruby language itself and it&#039;s syntax, but it never brought me to any clue on Rails - which isn&#039;t perfectly documented... Your tutorials are making the beginners life easier! Thanks!

Btw, i tried to introduce the very basics of (M)VC structure in PHP to some wider range of HTML developers by writing my own tutorial about it. Not sure if it&#039;s a good place to share, but hope some1 would find it interesting as well http://blog.thepixers.com/2008/07/tutorial-micro-cms-for-htmlcss-developers/

Cheers, keep up the good work! :)</description>
		<content:encoded><![CDATA[<p>Hi there!<br />
I&#8217;ve been through all of Your tutorials so far and i must say &#8211; You&#8217;re the best. I&#8217;m a classic LAMP developer who once decided to try switching to rails. I began with learning the Ruby language itself and it&#8217;s syntax, but it never brought me to any clue on Rails &#8211; which isn&#8217;t perfectly documented&#8230; Your tutorials are making the beginners life easier! Thanks!</p>
<p>Btw, i tried to introduce the very basics of (M)VC structure in PHP to some wider range of HTML developers by writing my own tutorial about it. Not sure if it&#8217;s a good place to share, but hope some1 would find it interesting as well <a href="http://blog.thepixers.com/2008/07/tutorial-micro-cms-for-htmlcss-developers/" rel="nofollow">http://blog.thepixers.com/2008/07/tutorial-micro-cms-for-htmlcss-developers/</a></p>
<p>Cheers, keep up the good work! <img src='http://jonathanng.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kyeno</title>
		<link>http://jonathanng.com/ruby-on-rails/rails-relationships/comment-page-3/#comment-1029</link>
		<dc:creator>Kyeno</dc:creator>
		<pubDate>Thu, 21 Aug 2008 22:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonathansng.com/?p=147#comment-1029</guid>
		<description>Hi there!
I&#039;ve been through all of Your tutorials so far and i must say - You&#039;re the best. I&#039;m a classic LAMP developer who once decided to try switching to rails. I began with learning the Ruby language itself and it&#039;s syntax, but it never brought me to any clue on Rails - which isn&#039;t perfectly documented... Your tutorials are making the beginners life easier! Thanks!

Btw, i tried to introduce the very basics of (M)VC structure in PHP to some wider range of HTML developers by writing my own tutorial about it. Not sure if it&#039;s a good place to share, but hope some1 would find it interesting as well http://blog.thepixers.com/2008/07/tutorial-micro-cms-for-htmlcss-developers/

Cheers, keep up the good work! :)</description>
		<content:encoded><![CDATA[<p>Hi there!<br />
I&#8217;ve been through all of Your tutorials so far and i must say &#8211; You&#8217;re the best. I&#8217;m a classic LAMP developer who once decided to try switching to rails. I began with learning the Ruby language itself and it&#8217;s syntax, but it never brought me to any clue on Rails &#8211; which isn&#8217;t perfectly documented&#8230; Your tutorials are making the beginners life easier! Thanks!</p>
<p>Btw, i tried to introduce the very basics of (M)VC structure in PHP to some wider range of HTML developers by writing my own tutorial about it. Not sure if it&#8217;s a good place to share, but hope some1 would find it interesting as well <a href="http://blog.thepixers.com/2008/07/tutorial-micro-cms-for-htmlcss-developers/" rel="nofollow">http://blog.thepixers.com/2008/07/tutorial-micro-cms-for-htmlcss-developers/</a></p>
<p>Cheers, keep up the good work! <img src='http://jonathanng.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luke Matthews</title>
		<link>http://jonathanng.com/ruby-on-rails/rails-relationships/comment-page-3/#comment-1026</link>
		<dc:creator>Luke Matthews</dc:creator>
		<pubDate>Sun, 17 Aug 2008 22:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonathansng.com/?p=147#comment-1026</guid>
		<description>chargeless upkindle tuberousness verdun intoxicate underbreath interceptress eleostearic
&lt;a href=&quot;http://www.cornquay.com/&quot; rel=&quot;nofollow&quot;&gt;Cornish Quay Holidays Ltd&lt;/a&gt;
 http://inkwell.mentorhigh.com/ 
&lt;a href=&quot;http://www.dozar.com/&quot; rel=&quot;nofollow&quot;&gt;Dozar Office Furnishings&lt;/a&gt;
 http://www.nissanexa.com/ 
&lt;a href=&quot;http://mortgagepro.ca&quot; rel=&quot;nofollow&quot;&gt;Joseph Berros &amp; Cindy M. Duncan - Mortgage Alliance Network&lt;/a&gt;
 http://www.cnn.com/2000/ALLPOLITICS/stories/10/03/schneider/ 
&lt;a href=&quot;http://www.riverdale.k12.or.us/students/jackr/who.html&quot; rel=&quot;nofollow&quot;&gt;Jack&#039;s The Who page&lt;/a&gt;
 http://cnn.com/2002/LAW/05/14/inv.moussaoui.appeals/index.html</description>
		<content:encoded><![CDATA[<p>chargeless upkindle tuberousness verdun intoxicate underbreath interceptress eleostearic<br />
<a href="http://www.cornquay.com/" rel="nofollow">Cornish Quay Holidays Ltd</a><br />
 <a href="http://inkwell.mentorhigh.com/" rel="nofollow">http://inkwell.mentorhigh.com/</a><br />
<a href="http://www.dozar.com/" rel="nofollow">Dozar Office Furnishings</a><br />
 <a href="http://www.nissanexa.com/" rel="nofollow">http://www.nissanexa.com/</a><br />
<a href="http://mortgagepro.ca" rel="nofollow">Joseph Berros &amp; Cindy M. Duncan &#8211; Mortgage Alliance Network</a><br />
 <a href="http://www.cnn.com/2000/ALLPOLITICS/stories/10/03/schneider/" rel="nofollow">http://www.cnn.com/2000/ALLPOLITICS/stories/10/03/schneider/</a><br />
<a href="http://www.riverdale.k12.or.us/students/jackr/who.html" rel="nofollow">Jack&#8217;s The Who page</a><br />
 <a href="http://cnn.com/2002/LAW/05/14/inv.moussaoui.appeals/index.html" rel="nofollow">http://cnn.com/2002/LAW/05/14/inv.moussaoui.appeals/index.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jefe</title>
		<link>http://jonathanng.com/ruby-on-rails/rails-relationships/comment-page-3/#comment-503</link>
		<dc:creator>jefe</dc:creator>
		<pubDate>Mon, 21 Jul 2008 17:27:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonathansng.com/?p=147#comment-503</guid>
		<description>Jonathan,

Your tutorials are excellent.  I&#039;d like to make a request regarding this one, Rails Relationships.  I will be working with an existing database where all tables, constraints, and relationships are defined in the DBMS as opposed to using Rails Migrations.  I (and I&#039;m sure others) would appreciate any additional info you may have regarding best practices in building Ruby/Rails 2.x applications using legacy databases. The only thing I&#039;ve found so far is this wiki, 

http://wiki.rubyonrails.com/rails/pages/HowToUseLegacySchemas

which isn&#039;t all that helpful in practice.

Thanks for your consideration

jefe</description>
		<content:encoded><![CDATA[<p>Jonathan,</p>
<p>Your tutorials are excellent.  I&#8217;d like to make a request regarding this one, Rails Relationships.  I will be working with an existing database where all tables, constraints, and relationships are defined in the DBMS as opposed to using Rails Migrations.  I (and I&#8217;m sure others) would appreciate any additional info you may have regarding best practices in building Ruby/Rails 2.x applications using legacy databases. The only thing I&#8217;ve found so far is this wiki, </p>
<p><a href="http://wiki.rubyonrails.com/rails/pages/HowToUseLegacySchemas" rel="nofollow">http://wiki.rubyonrails.com/rails/pages/HowToUseLegacySchemas</a></p>
<p>which isn&#8217;t all that helpful in practice.</p>
<p>Thanks for your consideration</p>
<p>jefe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jefe</title>
		<link>http://jonathanng.com/ruby-on-rails/rails-relationships/comment-page-2/#comment-1028</link>
		<dc:creator>jefe</dc:creator>
		<pubDate>Mon, 21 Jul 2008 17:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonathansng.com/?p=147#comment-1028</guid>
		<description>Jonathan,

Your tutorials are excellent.  I&#039;d like to make a request regarding this one, Rails Relationships.  I will be working with an existing database where all tables, constraints, and relationships are defined in the DBMS as opposed to using Rails Migrations.  I (and I&#039;m sure others) would appreciate any additional info you may have regarding best practices in building Ruby/Rails 2.x applications using legacy databases. The only thing I&#039;ve found so far is this wiki, 

http://wiki.rubyonrails.com/rails/pages/HowToUseLegacySchemas

which isn&#039;t all that helpful in practice.

Thanks for your consideration

jefe</description>
		<content:encoded><![CDATA[<p>Jonathan,</p>
<p>Your tutorials are excellent.  I&#8217;d like to make a request regarding this one, Rails Relationships.  I will be working with an existing database where all tables, constraints, and relationships are defined in the DBMS as opposed to using Rails Migrations.  I (and I&#8217;m sure others) would appreciate any additional info you may have regarding best practices in building Ruby/Rails 2.x applications using legacy databases. The only thing I&#8217;ve found so far is this wiki, </p>
<p><a href="http://wiki.rubyonrails.com/rails/pages/HowToUseLegacySchemas" rel="nofollow">http://wiki.rubyonrails.com/rails/pages/HowToUseLegacySchemas</a></p>
<p>which isn&#8217;t all that helpful in practice.</p>
<p>Thanks for your consideration</p>
<p>jefe</p>
]]></content:encoded>
	</item>
</channel>
</rss>

