<?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: Ruby Oracle DBI ActiveRecord in 7 steps</title>
	<atom:link href="http://www.missiondata.com/blog/database/26/ruby-oracle-dbi-activerecord-in-7-steps/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.missiondata.com/blog/database/26/ruby-oracle-dbi-activerecord-in-7-steps/</link>
	<description>Louisville-based Web Development &#038; Software Engineering</description>
	<lastBuildDate>Thu, 13 May 2010 10:34:28 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: lmx</title>
		<link>http://www.missiondata.com/blog/database/26/ruby-oracle-dbi-activerecord-in-7-steps/comment-page-1/#comment-21787</link>
		<dc:creator>lmx</dc:creator>
		<pubDate>Fri, 08 Jun 2007 05:03:17 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.missiondata.com/?p=26#comment-21787</guid>
		<description>I use CLOB as my column type but I still can&#039;t insert string larger than 4k.Can you?</description>
		<content:encoded><![CDATA[<p>I use CLOB as my column type but I still can&#8217;t insert string larger than 4k.Can you?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mission_data</title>
		<link>http://www.missiondata.com/blog/database/26/ruby-oracle-dbi-activerecord-in-7-steps/comment-page-1/#comment-18972</link>
		<dc:creator>mission_data</dc:creator>
		<pubDate>Tue, 01 May 2007 19:55:35 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.missiondata.com/?p=26#comment-18972</guid>
		<description>There is a 4K limit on varchars. Check out the limits here: http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14237/limits001.htm</description>
		<content:encoded><![CDATA[<p>There is a 4K limit on varchars. Check out the limits here: <a href="http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14237/limits001.htm" rel="nofollow">http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14237/limits001.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lmx</title>
		<link>http://www.missiondata.com/blog/database/26/ruby-oracle-dbi-activerecord-in-7-steps/comment-page-1/#comment-18701</link>
		<dc:creator>lmx</dc:creator>
		<pubDate>Fri, 27 Apr 2007 03:18:13 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.missiondata.com/?p=26#comment-18701</guid>
		<description>I have finished the 7 steps, and I can read and write data with oracle now.But I found I couldn&#039;t insert a string field into oracle that large than 4K.Can you?</description>
		<content:encoded><![CDATA[<p>I have finished the 7 steps, and I can read and write data with oracle now.But I found I couldn&#8217;t insert a string field into oracle that large than 4K.Can you?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles Nadeau</title>
		<link>http://www.missiondata.com/blog/database/26/ruby-oracle-dbi-activerecord-in-7-steps/comment-page-1/#comment-1226</link>
		<dc:creator>Charles Nadeau</dc:creator>
		<pubDate>Wed, 11 Oct 2006 17:44:49 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.missiondata.com/?p=26#comment-1226</guid>
		<description>I found my bug, a typo in /etc/profile.
Cheers!

Charles</description>
		<content:encoded><![CDATA[<p>I found my bug, a typo in /etc/profile.<br />
Cheers!</p>
<p>Charles</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Using Oracle databases with Ruby</title>
		<link>http://www.missiondata.com/blog/database/26/ruby-oracle-dbi-activerecord-in-7-steps/comment-page-1/#comment-217</link>
		<dc:creator>Using Oracle databases with Ruby</dc:creator>
		<pubDate>Wed, 28 Jun 2006 19:41:56 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.missiondata.com/?p=26#comment-217</guid>
		<description>[...] Ruby Oracle DBI ActiveRecord in 7 steps : An up to date tutorial on how to get ActiveRecord running with an Oracle database in 7 easy(ish) steps. [...]</description>
		<content:encoded><![CDATA[<p>[...] Ruby Oracle DBI ActiveRecord in 7 steps : An up to date tutorial on how to get ActiveRecord running with an Oracle database in 7 easy(ish) steps. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://www.missiondata.com/blog/database/26/ruby-oracle-dbi-activerecord-in-7-steps/comment-page-1/#comment-57</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 12 Apr 2006 15:57:42 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.missiondata.com/?p=26#comment-57</guid>
		<description>The NLS_LANG environmental variable can be very problematic as well.  Good luck if you need more than one character set encoding.  Due to using a legacy database where the developers decided it would be a good idea to store UTF-8 data in a Latin-1 encoding, I had to override the NLS_LANG parameter before the database is initialized.  Since the database is initialized in the config/boot.rb file before environmental files are loaded, I had to put ENV[&#039;NLS_LANG&#039;]=&#039;american_america.WE8ISO8859P1&#039; at the top of the boot.rb file.

You know you have bad encoding problems with oracle when you see &quot;Je d??teste Oracle&quot; like strings.

By the way, Oracle doesn&#039;t support the SQL92 &quot;set names&quot; standard, nor can you do an alter session to change the character set encoding.  Once the connection is made, there is no way to change the character set encoding, just the local information for sorting and formatting purposes.</description>
		<content:encoded><![CDATA[<p>The NLS_LANG environmental variable can be very problematic as well.  Good luck if you need more than one character set encoding.  Due to using a legacy database where the developers decided it would be a good idea to store UTF-8 data in a Latin-1 encoding, I had to override the NLS_LANG parameter before the database is initialized.  Since the database is initialized in the config/boot.rb file before environmental files are loaded, I had to put ENV['NLS_LANG']=&#8217;american_america.WE8ISO8859P1&#8242; at the top of the boot.rb file.</p>
<p>You know you have bad encoding problems with oracle when you see &#8220;Je d??teste Oracle&#8221; like strings.</p>
<p>By the way, Oracle doesn&#8217;t support the SQL92 &#8220;set names&#8221; standard, nor can you do an alter session to change the character set encoding.  Once the connection is made, there is no way to change the character set encoding, just the local information for sorting and formatting purposes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich R.</title>
		<link>http://www.missiondata.com/blog/database/26/ruby-oracle-dbi-activerecord-in-7-steps/comment-page-1/#comment-8</link>
		<dc:creator>Rich R.</dc:creator>
		<pubDate>Thu, 23 Mar 2006 03:57:28 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.missiondata.com/?p=26#comment-8</guid>
		<description>I had wondered the other day if a Ruby -&gt; Oracle connector existed. We do a significant amount of file processing, which might be much nicer in Ruby than Java.</description>
		<content:encoded><![CDATA[<p>I had wondered the other day if a Ruby -&gt; Oracle connector existed. We do a significant amount of file processing, which might be much nicer in Ruby than Java.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
