<?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 on: Connecting Ruby on Rails to Oracle on an Intel Mac in Leopard (Mac OSX 10.5)</title>
	<atom:link href="http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/</link>
	<description>Plants, food and web design</description>
	<pubDate>Wed, 23 Jul 2008 23:35:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Brent Miller</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-18121</link>
		<dc:creator>Brent Miller</dc:creator>
		<pubDate>Fri, 09 May 2008 21:39:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-18121</guid>
		<description>Gerbi: I put up newer instructions, including a rollback section, &lt;a href="http://www.foliosus.com/2008/05/05/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-take-2/" title="Connect Oracle to Rails" rel="nofollow"&gt;in a more recent post&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Gerbi: I put up newer instructions, including a rollback section, <a href="http://www.foliosus.com/2008/05/05/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-take-2/" title="Connect Oracle to Rails" rel="nofollow">in a more recent post</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerbi</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-18115</link>
		<dc:creator>Gerbi</dc:creator>
		<pubDate>Fri, 09 May 2008 18:54:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-18115</guid>
		<description>The Intel version of Oracle Instant Client is now available since April 27!

Can someone give instructions to rollback the changes? Specially the ruby-oci8 PPC compilation. I want to configure a full-Intel environment and need to recompile back ruby-oci8 library to the Intel version.
Thanks!</description>
		<content:encoded><![CDATA[<p>The Intel version of Oracle Instant Client is now available since April 27!</p>
<p>Can someone give instructions to rollback the changes? Specially the ruby-oci8 PPC compilation. I want to configure a full-Intel environment and need to recompile back ruby-oci8 library to the Intel version.<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Williams</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17958</link>
		<dc:creator>Matthew Williams</dc:creator>
		<pubDate>Tue, 06 May 2008 15:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17958</guid>
		<description>Brent, thanks for the response, I was able to drop in the ActiveRecord::Base.connection.send(:select, my_custom_sql_query) statement and everything slid right into place and I didn't need to modify any of my views or anything or need to fuss with the cursors (this is just simple data I'm returning).

Thanks again for the response and for being a decent resource (Rails/Oracle resources seem to be lacking).

Take care</description>
		<content:encoded><![CDATA[<p>Brent, thanks for the response, I was able to drop in the ActiveRecord::Base.connection.send(:select, my_custom_sql_query) statement and everything slid right into place and I didn&#8217;t need to modify any of my views or anything or need to fuss with the cursors (this is just simple data I&#8217;m returning).</p>
<p>Thanks again for the response and for being a decent resource (Rails/Oracle resources seem to be lacking).</p>
<p>Take care</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brent Miller</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17921</link>
		<dc:creator>Brent Miller</dc:creator>
		<pubDate>Mon, 05 May 2008 20:58:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17921</guid>
		<description>Matthew: What you're encountering straight-up OracleAdapter stuff.  The strange types are simply how the adapter maps Oracle data types into Ruby data types.  They're a bit weird, but nothing to worry about.  I've run into the same things.  They're not broken; they're just annoying because in the console you can't easily read the numbers.  You could write custom my_model.to_s or my_model.inspect methods to make the numbers come out nicer.

The OCI8::Cursor problem is a bit more complicated.  If you do any straight-up PL/SQL stuff you use cursors a lot: it's the preferred way for looping through result sets.  The Oracle adapter does the same thing.  If your returned object is called "foo", instead of doing &lt;code&gt;foo.each{&#124;f&#124; f.do_something}&lt;/code&gt; you have to do something like this:

&lt;pre class="code"&gt;results = []
while row = foo.fetch
  the_model = MyModel.new
  the_model.attribute_1 = row[1] # use typecasting if you want
  the_model.attribute_2 = row[2] # same here
  results &lt; &lt; the_model
end&lt;/pre&gt;

For a more formal view of how to approach this, open up the &lt;code&gt;oracle_adapter.rb&lt;/code&gt; file (in your ruby gems directory) and check out the &lt;code&gt;select&lt;/code&gt; method: it's got a full typecasting process.

In fact, since you're already writing your own SQL, there's a shortcut you could take.  To avoid writing custom code that's simply duplicating the select method, you could do something like this:

&lt;/pre&gt;&lt;pre class="code"&gt;results = ActiveRecord::Base.connection.send(:select, my_custom_sql_query)&lt;/pre&gt;

Like that you get your custom SQL, but you don't have to mess with the Oracle cursors.</description>
		<content:encoded><![CDATA[<p>Matthew: What you&#8217;re encountering straight-up OracleAdapter stuff.  The strange types are simply how the adapter maps Oracle data types into Ruby data types.  They&#8217;re a bit weird, but nothing to worry about.  I&#8217;ve run into the same things.  They&#8217;re not broken; they&#8217;re just annoying because in the console you can&#8217;t easily read the numbers.  You could write custom my_model.to_s or my_model.inspect methods to make the numbers come out nicer.</p>
<p>The OCI8::Cursor problem is a bit more complicated.  If you do any straight-up PL/SQL stuff you use cursors a lot: it&#8217;s the preferred way for looping through result sets.  The Oracle adapter does the same thing.  If your returned object is called &#8220;foo&#8221;, instead of doing <code>foo.each{|f| f.do_something}</code> you have to do something like this:</p>
<pre class="code">results = []
while row = foo.fetch
  the_model = MyModel.new
  the_model.attribute_1 = row[1] # use typecasting if you want
  the_model.attribute_2 = row[2] # same here
  results < < the_model
end</pre>
<p>For a more formal view of how to approach this, open up the <code>oracle_adapter.rb</code> file (in your ruby gems directory) and check out the <code>select</code> method: it&#8217;s got a full typecasting process.</p>
<p>In fact, since you&#8217;re already writing your own SQL, there&#8217;s a shortcut you could take.  To avoid writing custom code that&#8217;s simply duplicating the select method, you could do something like this:</p>
</pre>
<pre class="code">results = ActiveRecord::Base.connection.send(:select, my_custom_sql_query)</pre>
<p>Like that you get your custom SQL, but you don&#8217;t have to mess with the Oracle cursors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Williams</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17918</link>
		<dc:creator>Matthew Williams</dc:creator>
		<pubDate>Mon, 05 May 2008 19:25:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17918</guid>
		<description>I'm on Windows (ugh, at work, Mac guy at home :)) but I'm having difficulty finding good Rails/Oracle resources.  Using the activerecord-oracle-adapter with OCI8.

Doing a simple ActiveRecord find I'm getting strange column types returned:

=&#62; #&#60;LRU id: #, name: "name", volts: #, amps: #,weight:#&#60;BigDecimal:32e2f90,

I also have some elaborate queries in my Rails app so I'm executing the SQL with ActiveRecord::Base.connection().execute("SQL")

But when I try to iterate through the returned array of objects I noticed I'm getting an object returned of type OCI8::Cursor.
"undefined method `each' for #"

Any thoughts?</description>
		<content:encoded><![CDATA[<p>I&#8217;m on Windows (ugh, at work, Mac guy at home :)) but I&#8217;m having difficulty finding good Rails/Oracle resources.  Using the activerecord-oracle-adapter with OCI8.</p>
<p>Doing a simple ActiveRecord find I&#8217;m getting strange column types returned:</p>
<p>=&gt; #&lt;LRU id: #, name: &#8220;name&#8221;, volts: #, amps: #,weight:#&lt;BigDecimal:32e2f90,</p>
<p>I also have some elaborate queries in my Rails app so I&#8217;m executing the SQL with ActiveRecord::Base.connection().execute(&#8221;SQL&#8221;)</p>
<p>But when I try to iterate through the returned array of objects I noticed I&#8217;m getting an object returned of type OCI8::Cursor.<br />
&#8220;undefined method `each&#8217; for #&#8221;</p>
<p>Any thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brent Miller</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17653</link>
		<dc:creator>Brent Miller</dc:creator>
		<pubDate>Mon, 28 Apr 2008 20:14:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17653</guid>
		<description>Excellent!

I'm glad the tutorial helped you out. :)</description>
		<content:encoded><![CDATA[<p>Excellent!</p>
<p>I&#8217;m glad the tutorial helped you out. <img src='http://www.foliosus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kyle</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17651</link>
		<dc:creator>Kyle</dc:creator>
		<pubDate>Mon, 28 Apr 2008 18:30:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17651</guid>
		<description>@Brent:

My bad, I didn't adjust the path name of the oracle instant client.  My dir. was named differently, so once I fixed that it's all good.

Thanks a lot for the tutorial!</description>
		<content:encoded><![CDATA[<p>@Brent:</p>
<p>My bad, I didn&#8217;t adjust the path name of the oracle instant client.  My dir. was named differently, so once I fixed that it&#8217;s all good.</p>
<p>Thanks a lot for the tutorial!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brent Miller</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17650</link>
		<dc:creator>Brent Miller</dc:creator>
		<pubDate>Mon, 28 Apr 2008 16:46:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17650</guid>
		<description>Hmmm....  I haven't seen this problem yet.  What versions of things are you using?  (oci8, oracle, ruby)</description>
		<content:encoded><![CDATA[<p>Hmmm&#8230;.  I haven&#8217;t seen this problem yet.  What versions of things are you using?  (oci8, oracle, ruby)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kyle</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17649</link>
		<dc:creator>Kyle</dc:creator>
		<pubDate>Mon, 28 Apr 2008 14:43:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17649</guid>
		<description>I got stuck on the last part where I'm building the oci library. Typed "ruby setup.rb config" and got this error message:

Get the version of Oracle from SQL*Plus... ---------------------------------------------------
error messages:
cannot get Oracle version from sqlplus
---------------------------------------------------

Any idea how I can solve this?</description>
		<content:encoded><![CDATA[<p>I got stuck on the last part where I&#8217;m building the oci library. Typed &#8220;ruby setup.rb config&#8221; and got this error message:</p>
<p>Get the version of Oracle from SQL*Plus&#8230; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
error messages:<br />
cannot get Oracle version from sqlplus<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Any idea how I can solve this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Jackson</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17249</link>
		<dc:creator>Peter Jackson</dc:creator>
		<pubDate>Thu, 17 Apr 2008 03:34:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-17249</guid>
		<description>I opened up rbconfig.rb and found this code at line 17:

    if e = ENV['ARCHFLAGS']
      e
    elsif e = ENV['RC_ARCHS']
      e.split.map { &#124;a&#124; "-arch #{a}" }.join(' ')
    else
      '-arch ppc -arch i386'
    end

If you don't feel brave enough to edit this file, you can simply add this export to your compilation of the instant client: 

cd ~/Downloads/ruby-oci8-1.0.0
export ARCHFLAGS='-arch ppc'      # ADD THIS LINE!
export DYLD_LIBRARY_PATH=/Library/Oracle/instantclient/10.1.0.3
export SQLPATH=/Library/Oracle/instantclient/10.1.0.3
ruby setup.rb config
make
sudo make install</description>
		<content:encoded><![CDATA[<p>I opened up rbconfig.rb and found this code at line 17:</p>
<p>    if e = ENV['ARCHFLAGS']<br />
      e<br />
    elsif e = ENV['RC_ARCHS']<br />
      e.split.map { |a| &#8220;-arch #{a}&#8221; }.join(&#8217; &#8216;)<br />
    else<br />
      &#8216;-arch ppc -arch i386&#8242;<br />
    end</p>
<p>If you don&#8217;t feel brave enough to edit this file, you can simply add this export to your compilation of the instant client: </p>
<p>cd ~/Downloads/ruby-oci8-1.0.0<br />
export ARCHFLAGS=&#8217;-arch ppc&#8217;      # ADD THIS LINE!<br />
export DYLD_LIBRARY_PATH=/Library/Oracle/instantclient/10.1.0.3<br />
export SQLPATH=/Library/Oracle/instantclient/10.1.0.3<br />
ruby setup.rb config<br />
make<br />
sudo make install</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brent Miller</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-16939</link>
		<dc:creator>Brent Miller</dc:creator>
		<pubDate>Fri, 04 Apr 2008 00:30:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-16939</guid>
		<description>Congrats!  I hope you didn't spend all day working on it, though.  That would be quite the Marathon.  What did you have to change to get my solution to work?  A few path names here and there?  If you wouldn't mind posting some of those, I'm sure future readers would be appreciative.</description>
		<content:encoded><![CDATA[<p>Congrats!  I hope you didn&#8217;t spend all day working on it, though.  That would be quite the Marathon.  What did you have to change to get my solution to work?  A few path names here and there?  If you wouldn&#8217;t mind posting some of those, I&#8217;m sure future readers would be appreciative.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-16938</link>
		<dc:creator>Randy</dc:creator>
		<pubDate>Fri, 04 Apr 2008 00:19:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-16938</guid>
		<description>Brent: I just got oci8 to work on my intel osx 10.4.10 (Dell Inspiron hackintosh) not more than 10 minutes ago!!  I feel like I've run a marathon.  
Now I have to deal with migration errors (can't create a table... rake aborted!  wrong number of arguments 1 for 0).  But as long as I can connect with ruby compiled as ppc, I should be able to figure migrations out.</description>
		<content:encoded><![CDATA[<p>Brent: I just got oci8 to work on my intel osx 10.4.10 (Dell Inspiron hackintosh) not more than 10 minutes ago!!  I feel like I&#8217;ve run a marathon.<br />
Now I have to deal with migration errors (can&#8217;t create a table&#8230; rake aborted!  wrong number of arguments 1 for 0).  But as long as I can connect with ruby compiled as ppc, I should be able to figure migrations out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brent Miller</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-16905</link>
		<dc:creator>Brent Miller</dc:creator>
		<pubDate>Thu, 03 Apr 2008 03:59:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-16905</guid>
		<description>Randy: I have no idea.  I haven't seen any news about it since February (when I posted comment #9).  Of course, that's because I haven't looked. :)

Really, it's up to how Oracle is building/compiling/releasing the package.  That will determine if there's a hack to make it work on Tiger.</description>
		<content:encoded><![CDATA[<p>Randy: I have no idea.  I haven&#8217;t seen any news about it since February (when I posted comment #9).  Of course, that&#8217;s because I haven&#8217;t looked. <img src='http://www.foliosus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Really, it&#8217;s up to how Oracle is building/compiling/releasing the package.  That will determine if there&#8217;s a hack to make it work on Tiger.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-16900</link>
		<dc:creator>Randy</dc:creator>
		<pubDate>Thu, 03 Apr 2008 02:03:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-16900</guid>
		<description>The upcoming intel-native instant client is for Intel 10.5.x Leopard only.  Would there be a way to use/change/hack that to work on OSX Intel 10.4.10 Tiger so that Instant Client and Ruby are both running Intel native?</description>
		<content:encoded><![CDATA[<p>The upcoming intel-native instant client is for Intel 10.5.x Leopard only.  Would there be a way to use/change/hack that to work on OSX Intel 10.4.10 Tiger so that Instant Client and Ruby are both running Intel native?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Russell</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-13500</link>
		<dc:creator>Russell</dc:creator>
		<pubDate>Tue, 12 Feb 2008 00:05:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-13500</guid>
		<description>Oh cool.  We'll have occasion to exercise the 'fat_ruby.sh' script perhaps :)</description>
		<content:encoded><![CDATA[<p>Oh cool.  We&#8217;ll have occasion to exercise the &#8216;fat_ruby.sh&#8217; script perhaps <img src='http://www.foliosus.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brent Miller</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-13486</link>
		<dc:creator>Brent Miller</dc:creator>
		<pubDate>Mon, 11 Feb 2008 20:13:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-13486</guid>
		<description>Russell: I just discovered that Oracle has announced that they're &lt;em&gt;finally&lt;/em&gt; porting the libraries to Intel-native. One of their guys said so &lt;a href="https://mix.oracle.com/ideas/12281-release-instant-client-for-mac-intel" rel="nofollow"&gt;on the Oracle Mix&lt;/a&gt; site (login required). It's slated for Q1 or Q2 of 2008, which is to say real soon.</description>
		<content:encoded><![CDATA[<p>Russell: I just discovered that Oracle has announced that they&#8217;re <em>finally</em> porting the libraries to Intel-native. One of their guys said so <a href="https://mix.oracle.com/ideas/12281-release-instant-client-for-mac-intel" rel="nofollow">on the Oracle Mix</a> site (login required). It&#8217;s slated for Q1 or Q2 of 2008, which is to say real soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Russell</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-13401</link>
		<dc:creator>Russell</dc:creator>
		<pubDate>Sun, 10 Feb 2008 17:41:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-13401</guid>
		<description>Thanks man.  You probably just saved thousands of wasted man hours around the globe.  Too bad there's no way to convert that to carbon credits or something.  I was about to abandon running from OSX and just develop from my Linux VM fusion inside of OSX ( which is where the oracle server is running ).  But now I can stay in OSX for my rails dev.</description>
		<content:encoded><![CDATA[<p>Thanks man.  You probably just saved thousands of wasted man hours around the globe.  Too bad there&#8217;s no way to convert that to carbon credits or something.  I was about to abandon running from OSX and just develop from my Linux VM fusion inside of OSX ( which is where the oracle server is running ).  But now I can stay in OSX for my rails dev.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Brice</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-11656</link>
		<dc:creator>Tom Brice</dc:creator>
		<pubDate>Mon, 21 Jan 2008 20:57:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-11656</guid>
		<description>Thanks for the walk-through.  For posterity, I had to do this:
&lt;code&gt;
$ cd /Library/Oracle/instantclient/10.1.0.3
$ ln -s libclntsh.dylib.10.1 libclntsh.dylib
&lt;/code&gt;

Thanks again.</description>
		<content:encoded><![CDATA[<p>Thanks for the walk-through.  For posterity, I had to do this:<br />
<code><br />
$ cd /Library/Oracle/instantclient/10.1.0.3<br />
$ ln -s libclntsh.dylib.10.1 libclntsh.dylib<br />
</code></p>
<p>Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Akers</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-11356</link>
		<dc:creator>James Akers</dc:creator>
		<pubDate>Wed, 16 Jan 2008 14:13:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-11356</guid>
		<description>Great post, Thanks!</description>
		<content:encoded><![CDATA[<p>Great post, Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hazmatt</title>
		<link>http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-11261</link>
		<dc:creator>Hazmatt</dc:creator>
		<pubDate>Mon, 14 Jan 2008 22:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.foliosus.com/2007/11/19/connecting-ruby-on-rails-to-oracle-on-an-intel-mac-in-leopard-mac-osx-105/#comment-11261</guid>
		<description>This totally rocks.  Thanks a ton.</description>
		<content:encoded><![CDATA[<p>This totally rocks.  Thanks a ton.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
