<?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: JRuby, ActiveRecord, JDBC to SQL Server</title>
	<atom:link href="http://techwhizbang.com/2010/03/jruby-activerecord-jdbc-sqlserver/feed/" rel="self" type="application/rss+xml" />
	<link>http://techwhizbang.com/2010/03/jruby-activerecord-jdbc-sqlserver/</link>
	<description>my work, life, and ideas</description>
	<lastBuildDate>Thu, 01 Jul 2010 20:13:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: techwhizbang</title>
		<link>http://techwhizbang.com/2010/03/jruby-activerecord-jdbc-sqlserver/comment-page-1/#comment-72</link>
		<dc:creator>techwhizbang</dc:creator>
		<pubDate>Mon, 24 May 2010 02:34:39 +0000</pubDate>
		<guid isPermaLink="false">http://techwhizbang.com/?p=109#comment-72</guid>
		<description>Nice catch, thanks Jason.</description>
		<content:encoded><![CDATA[<p>Nice catch, thanks Jason.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://techwhizbang.com/2010/03/jruby-activerecord-jdbc-sqlserver/comment-page-1/#comment-71</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Tue, 18 May 2010 21:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://techwhizbang.com/?p=109#comment-71</guid>
		<description>Minor error in here...

file = File.new(&quot;my_xml.xml&quot;, &quot;w&quot;)
file = File.write(people.to_xml)
file.close

should be...

file = File.new(&quot;my_xml.xml&quot;, &quot;w&quot;)
file.write(people.to_xml)
file.close</description>
		<content:encoded><![CDATA[<p>Minor error in here&#8230;</p>
<p>file = File.new(&#8220;my_xml.xml&#8221;, &#8220;w&#8221;)<br />
file = File.write(people.to_xml)<br />
file.close</p>
<p>should be&#8230;</p>
<p>file = File.new(&#8220;my_xml.xml&#8221;, &#8220;w&#8221;)<br />
file.write(people.to_xml)<br />
file.close</p>
]]></content:encoded>
	</item>
</channel>
</rss>
