<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: ruby-plsql new version &#8211; Ruby 1.9.1 support and more</title>
	<atom:link href="http://blog.rayapps.com/2009/04/21/ruby-plsql-new-version-ruby-191-support-and-more/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.rayapps.com/2009/04/21/ruby-plsql-new-version-ruby-191-support-and-more/</link>
	<description>About Ruby, Oracle, Mac and others</description>
	<lastBuildDate>Wed, 28 Jul 2010 16:18:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: chris</title>
		<link>http://blog.rayapps.com/2009/04/21/ruby-plsql-new-version-ruby-191-support-and-more/#comment-988</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Mon, 26 Oct 2009 19:58:23 +0000</pubDate>
		<guid isPermaLink="false">http://rayapps.wordpress.com/?p=81#comment-988</guid>
		<description>and it does indeed, thanks :)</description>
		<content:encoded><![CDATA[<p>and it does indeed, thanks :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raimonds Simanovskis</title>
		<link>http://blog.rayapps.com/2009/04/21/ruby-plsql-new-version-ruby-191-support-and-more/#comment-987</link>
		<dc:creator>Raimonds Simanovskis</dc:creator>
		<pubDate>Mon, 26 Oct 2009 12:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://rayapps.wordpress.com/?p=81#comment-987</guid>
		<description>I didn&#039;t update Manifest.txt file to reflect file name changes in gem - now rake install_gem should work.</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t update Manifest.txt file to reflect file name changes in gem &#8211; now rake install_gem should work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://blog.rayapps.com/2009/04/21/ruby-plsql-new-version-ruby-191-support-and-more/#comment-981</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Fri, 23 Oct 2009 18:45:06 +0000</pubDate>
		<guid isPermaLink="false">http://rayapps.wordpress.com/?p=81#comment-981</guid>
		<description>I cloned git repo, but rake install_gem did not work giving me following:
chris@chris-ub:~/src/ruby-plsql$ rake install_gem
(in /home/chris/src/ruby-plsql)
rm -r doc
rm -r pkg
rake aborted!
Don&#039;t know how to build task &#039;lib/ruby_plsql/version.rb&#039;

I tried manually just add the line @schema_name = nil to schema.rb but it did not change the behaviour (maybe in between there were other changes, I see the directory structure is changed slightly inside of lib/)

I will wait for the gem. And anyway it&#039;s not critical since the parallel connections option works great.

thanks for your great work

PS. from next issue on will post to the discussion group :)</description>
		<content:encoded><![CDATA[<p>I cloned git repo, but rake install_gem did not work giving me following:<br />
chris@chris-ub:~/src/ruby-plsql$ rake install_gem<br />
(in /home/chris/src/ruby-plsql)<br />
rm -r doc<br />
rm -r pkg<br />
rake aborted!<br />
Don&#8217;t know how to build task &#8216;lib/ruby_plsql/version.rb&#8217;</p>
<p>I tried manually just add the line @schema_name = nil to schema.rb but it did not change the behaviour (maybe in between there were other changes, I see the directory structure is changed slightly inside of lib/)</p>
<p>I will wait for the gem. And anyway it&#8217;s not critical since the parallel connections option works great.</p>
<p>thanks for your great work</p>
<p>PS. from next issue on will post to the discussion group :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raimonds Simanovskis</title>
		<link>http://blog.rayapps.com/2009/04/21/ruby-plsql-new-version-ruby-191-support-and-more/#comment-980</link>
		<dc:creator>Raimonds Simanovskis</dc:creator>
		<pubDate>Fri, 23 Oct 2009 12:41:32 +0000</pubDate>
		<guid isPermaLink="false">http://rayapps.wordpress.com/?p=81#comment-980</guid>
		<description>Fixed the issue - I was not clearing cached schema name after resetting connection. Thanks for reporting :)

I pushed the patch to github - if this is critical for you then please clone it from github.com/rsim/ruby-plsql and run &quot;rake install_gem&quot;. Or you can wait until I publish new version of gem.

Btw if you need to operate with two different connections then you can use them in parallel like:

plsql(:one).connection = OCI8.new(’chris’,&#039;*****’,&#039;emeadb11′)
plsql(:two).connection = OCI8.new(’kcierpisz’,&#039;*****’,&#039;mktgcd’)
plsql(:one).emeadb_phone_pkg.prepare_phones_in(’EMEA_PHONES’)
plsql(:two).phone_pkg.create_table(’EMEA_PHONES_TMP’)

And also if you have any further issues with ruby-plsql then please use discussion group http://groups.google.com/group/oracle-enhanced - it is primarily used for oracle_enhanced adapter but ruby-plsql questions might be interesting for oracle_enhanced users as well.</description>
		<content:encoded><![CDATA[<p>Fixed the issue &#8211; I was not clearing cached schema name after resetting connection. Thanks for reporting :)</p>
<p>I pushed the patch to github &#8211; if this is critical for you then please clone it from github.com/rsim/ruby-plsql and run &#8220;rake install_gem&#8221;. Or you can wait until I publish new version of gem.</p>
<p>Btw if you need to operate with two different connections then you can use them in parallel like:</p>
<p>plsql(:one).connection = OCI8.new(’chris’,&#8217;*****’,&#8217;emeadb11′)<br />
plsql(:two).connection = OCI8.new(’kcierpisz’,&#8217;*****’,&#8217;mktgcd’)<br />
plsql(:one).emeadb_phone_pkg.prepare_phones_in(’EMEA_PHONES’)<br />
plsql(:two).phone_pkg.create_table(’EMEA_PHONES_TMP’)</p>
<p>And also if you have any further issues with ruby-plsql then please use discussion group <a href="http://groups.google.com/group/oracle-enhanced" rel="nofollow">http://groups.google.com/group/oracle-enhanced</a> &#8211; it is primarily used for oracle_enhanced adapter but ruby-plsql questions might be interesting for oracle_enhanced users as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://blog.rayapps.com/2009/04/21/ruby-plsql-new-version-ruby-191-support-and-more/#comment-978</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Thu, 22 Oct 2009 19:06:18 +0000</pubDate>
		<guid isPermaLink="false">http://rayapps.wordpress.com/?p=81#comment-978</guid>
		<description>hi Raimonds,

I am very happy user of your gem.

I encountered today an obstacle when handling 2 connections in one script.
I have 2 databases emeadb11 and mktgcd

chris@chris-ub:~$ irb
irb(main):001:0&gt; require &#039;rubygems&#039;
=&gt; true
irb(main):002:0&gt; require &#039;ruby_plsql&#039;
=&gt; true
irb(main):003:0&gt; con1 = OCI8.new(&#039;chris&#039;,&#039;*****&#039;,&#039;emeadb11&#039;)
=&gt; #
irb(main):004:0&gt; con2 = OCI8.new(&#039;kcierpisz&#039;,&#039;*****&#039;,&#039;mktgcd&#039;)
=&gt; #
irb(main):005:0&gt; plsql.connection = con1
=&gt; #
irb(main):006:0&gt; plsql
=&gt; #&lt;PLSQL::Schema:0x8cd9f94 @schema_name=nil, @procedures={}, @connection=#&lt;PLSQL::OCIConnection:0x8cd95a8 @activerecord_class=nil, @raw_connection=#, @raw_driver=:oci&gt;, @first=true, @schemas={}, @packages={}&gt;
irb(main):007:0&gt; plsql.emeadb_phone_pkg.prepare_phones_in(&#039;EMEA_PHONES&#039;)
=&gt; nil
irb(main):008:0&gt; plsql
=&gt; #&lt;PLSQL::Schema:0x8cd9f94 @schema_name=&quot;CHRIS&quot;, @procedures={}, @connection=#&lt;PLSQL::OCIConnection:0x8cd95a8 @activerecord_class=nil, @raw_connection=#, @raw_driver=:oci&gt;, @first=true, @schemas={}, @packages={:emeadb_phone_pkg=&gt;##[]}, @schema=#, @arguments={0=&gt;{:emea_phones_table=&gt;{:data_precision=&gt;nil, :data_type=&gt;&quot;VARCHAR2&quot;, :data_scale=&gt;nil, :in_out=&gt;&quot;IN&quot;, :data_length=&gt;nil, :position=&gt;1}}}, @argument_list={0=&gt;[:emea_phones_table]}, @overloaded=false, @package=&quot;EMEADB_PHONE_PKG&quot;, @return={0=&gt;nil}, @overloads=[0], @procedure=&quot;PREPARE_PHONES_IN&quot;&gt;}, @override_schema_name=nil, @schema=#, @package=&quot;EMEADB_PHONE_PKG&quot;&gt;}&gt;
irb(main):009:0&gt; plsql.connection = con2
=&gt; #
irb(main):010:0&gt; plsql
=&gt; #&lt;PLSQL::Schema:0x8cd9f94 @schema_name=&quot;CHRIS&quot;, @procedures={}, @connection=#&lt;PLSQL::OCIConnection:0x97554c8 @activerecord_class=nil, @raw_connection=#, @raw_driver=:oci&gt;, @first=true, @schemas={}, @packages={}&gt;
irb(main):011:0&gt; plsql.phone_pkg.create_table(&#039;EMEA_PHONES_TMP&#039;)
ArgumentError: No PL/SQL procedure found
	from /home/chris/.gem/ruby/1.8/gems/ruby-plsql-0.3.1/lib/plsql/schema.rb:127:in `method_missing&#039;
	from (irb):11
	from :0
irb(main):012:0&gt; 

as you can see at irb(main):006 schema_name is nil (although it should already here have CHRIS I guess)
at irb(main):008 schema_name has value &#039;CHRIS&#039; (probably because at irb(main):007 I ran a procedure)
at irb(main):009 I am assigning con2 (KCIERPISZ schema)
plsql though sees still CHRIS under schema_name
and that&#039;s why irb(main):011 fails.

When I run only one connection per script everything is fine:
irb(main):001:0&gt; require &#039;rubygems&#039;
=&gt; true
irb(main):002:0&gt; require &#039;ruby_plsql&#039;
=&gt; true
irb(main):003:0&gt; 
irb(main):004:0* con2 = OCI8.new(&quot;kcierpisz&quot;,&quot;*****&quot;,&quot;mktgcd&quot;)
=&gt; #
irb(main):005:0&gt; plsql.connection = con2
=&gt; #
irb(main):006:0&gt; plsql.phone_pkg.create_table(&#039;EMEA_PHONES_TMP&#039;)
=&gt; nil
irb(main):007:0&gt; plsql
=&gt; #&lt;PLSQL::Schema:0x8f33984 @schema_name=&quot;KCIERPISZ&quot;, @procedures={}, @connection=#&lt;PLSQL::OCIConnection:0x8f338e4 @activerecord_class=nil, @raw_connection=#, @raw_driver=:oci&gt;, @first=true, @schemas={}, @packages={:phone_pkg=&gt;##[]}, @schema=#, @arguments={0=&gt;{:emea_phones_tmp_table=&gt;{:data_precision=&gt;nil, :data_type=&gt;&quot;VARCHAR2&quot;, :data_scale=&gt;nil, :in_out=&gt;&quot;IN&quot;, :data_length=&gt;nil, :position=&gt;1}}}, @argument_list={0=&gt;[:emea_phones_tmp_table]}, @overloaded=false, @package=&quot;PHONE_PKG&quot;, @return={0=&gt;nil}, @overloads=[0], @procedure=&quot;CREATE_TABLE&quot;&gt;}, @override_schema_name=nil, @schema=#, @package=&quot;PHONE_PKG&quot;&gt;}&gt;
irb(main):008:0&gt; 

Is there a way I could overwrite that schema_name (if that causes the issue)?

thanks a lot for your help,
chris</description>
		<content:encoded><![CDATA[<p>hi Raimonds,</p>
<p>I am very happy user of your gem.</p>
<p>I encountered today an obstacle when handling 2 connections in one script.<br />
I have 2 databases emeadb11 and mktgcd</p>
<p>chris@chris-ub:~$ irb<br />
irb(main):001:0&gt; require &#8216;rubygems&#8217;<br />
=&gt; true<br />
irb(main):002:0&gt; require &#8216;ruby_plsql&#8217;<br />
=&gt; true<br />
irb(main):003:0&gt; con1 = OCI8.new(&#8216;chris&#8217;,'*****&#8217;,'emeadb11&#8242;)<br />
=&gt; #<br />
irb(main):004:0&gt; con2 = OCI8.new(&#8216;kcierpisz&#8217;,'*****&#8217;,'mktgcd&#8217;)<br />
=&gt; #<br />
irb(main):005:0&gt; plsql.connection = con1<br />
=&gt; #<br />
irb(main):006:0&gt; plsql<br />
=&gt; #&lt;PLSQL::Schema:0x8cd9f94 @schema_name=nil, @procedures={}, @connection=#&lt;PLSQL::OCIConnection:0x8cd95a8 @activerecord_class=nil, @raw_connection=#, @raw_driver=:oci&gt;, @first=true, @schemas={}, @packages={}&gt;<br />
irb(main):007:0&gt; plsql.emeadb_phone_pkg.prepare_phones_in(&#8216;EMEA_PHONES&#8217;)<br />
=&gt; nil<br />
irb(main):008:0&gt; plsql<br />
=&gt; #&lt;PLSQL::Schema:0x8cd9f94 @schema_name=&quot;CHRIS&quot;, @procedures={}, @connection=#&lt;PLSQL::OCIConnection:0x8cd95a8 @activerecord_class=nil, @raw_connection=#, @raw_driver=:oci&gt;, @first=true, @schemas={}, @packages={:emeadb_phone_pkg=&gt;##[]}, @schema=#, @arguments={0=&gt;{:emea_phones_table=&gt;{:data_precision=&gt;nil, :data_type=&gt;&#8221;VARCHAR2&#8243;, :data_scale=&gt;nil, :in_out=&gt;&#8221;IN&#8221;, :data_length=&gt;nil, :position=&gt;1}}}, @argument_list={0=&gt;[:emea_phones_table]}, @overloaded=false, @package=&#8221;EMEADB_PHONE_PKG&#8221;, @return={0=&gt;nil}, @overloads=[0], @procedure=&#8221;PREPARE_PHONES_IN&#8221;&gt;}, @override_schema_name=nil, @schema=#, @package=&#8221;EMEADB_PHONE_PKG&#8221;&gt;}&gt;<br />
irb(main):009:0&gt; plsql.connection = con2<br />
=&gt; #<br />
irb(main):010:0&gt; plsql<br />
=&gt; #&lt;PLSQL::Schema:0x8cd9f94 @schema_name=&quot;CHRIS&quot;, @procedures={}, @connection=#&lt;PLSQL::OCIConnection:0x97554c8 @activerecord_class=nil, @raw_connection=#, @raw_driver=:oci&gt;, @first=true, @schemas={}, @packages={}&gt;<br />
irb(main):011:0&gt; plsql.phone_pkg.create_table(&#8216;EMEA_PHONES_TMP&#8217;)<br />
ArgumentError: No PL/SQL procedure found<br />
	from /home/chris/.gem/ruby/1.8/gems/ruby-plsql-0.3.1/lib/plsql/schema.rb:127:in `method_missing&#8217;<br />
	from (irb):11<br />
	from :0<br />
irb(main):012:0&gt; </p>
<p>as you can see at irb(main):006 schema_name is nil (although it should already here have CHRIS I guess)<br />
at irb(main):008 schema_name has value &#8216;CHRIS&#8217; (probably because at irb(main):007 I ran a procedure)<br />
at irb(main):009 I am assigning con2 (KCIERPISZ schema)<br />
plsql though sees still CHRIS under schema_name<br />
and that&#8217;s why irb(main):011 fails.</p>
<p>When I run only one connection per script everything is fine:<br />
irb(main):001:0&gt; require &#8216;rubygems&#8217;<br />
=&gt; true<br />
irb(main):002:0&gt; require &#8216;ruby_plsql&#8217;<br />
=&gt; true<br />
irb(main):003:0&gt;<br />
irb(main):004:0* con2 = OCI8.new(&#8220;kcierpisz&#8221;,&#8221;*****&#8221;,&#8221;mktgcd&#8221;)<br />
=&gt; #<br />
irb(main):005:0&gt; plsql.connection = con2<br />
=&gt; #<br />
irb(main):006:0&gt; plsql.phone_pkg.create_table(&#8216;EMEA_PHONES_TMP&#8217;)<br />
=&gt; nil<br />
irb(main):007:0&gt; plsql<br />
=&gt; #&lt;PLSQL::Schema:0x8f33984 @schema_name=&quot;KCIERPISZ&quot;, @procedures={}, @connection=#&lt;PLSQL::OCIConnection:0x8f338e4 @activerecord_class=nil, @raw_connection=#, @raw_driver=:oci&gt;, @first=true, @schemas={}, @packages={:phone_pkg=&gt;##[]}, @schema=#, @arguments={0=&gt;{:emea_phones_tmp_table=&gt;{:data_precision=&gt;nil, :data_type=&gt;&#8221;VARCHAR2&#8243;, :data_scale=&gt;nil, :in_out=&gt;&#8221;IN&#8221;, :data_length=&gt;nil, :position=&gt;1}}}, @argument_list={0=&gt;[:emea_phones_tmp_table]}, @overloaded=false, @package=&#8221;PHONE_PKG&#8221;, @return={0=&gt;nil}, @overloads=[0], @procedure=&#8221;CREATE_TABLE&#8221;&gt;}, @override_schema_name=nil, @schema=#, @package=&#8221;PHONE_PKG&#8221;&gt;}&gt;<br />
irb(main):008:0&gt; </p>
<p>Is there a way I could overwrite that schema_name (if that causes the issue)?</p>
<p>thanks a lot for your help,<br />
chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcus Baguley</title>
		<link>http://blog.rayapps.com/2009/04/21/ruby-plsql-new-version-ruby-191-support-and-more/#comment-550</link>
		<dc:creator>Marcus Baguley</dc:creator>
		<pubDate>Thu, 23 Jul 2009 22:30:07 +0000</pubDate>
		<guid isPermaLink="false">http://rayapps.wordpress.com/?p=81#comment-550</guid>
		<description>perhaps something like
psql.pkg.test {&#124;row&#124; row.each {&#124;col&#124; }

I guess an enhanced version could support batch fetching similar to find_in_batches. 
I have managed to call using a ref-cursor using the following jdbc code - not a generic solution and only for JRuby but found no references on google so i will paste it here....

  def test
    conn = ActiveRecord::Base.connection.raw_connection
    cstmt = conn.prepareCall(&quot;begin  test(?); end;&quot;)
    cstmt.registerOutParameter(1,  -10) # -10  == oracle.jdbc.driver.OracleTypes.CURSOR
    cstmt.execute
    rs = cstmt.getObject(1)
    rsm = rs.getMetaData
    columnCount = rsm.getColumnCount
    rows = []
    while (rs.next())
       row = []
       for j in (1..columnCount)
          row &lt;&lt; rs.getObject(j)
       end
       rows &lt;&lt; row
    end
    return rows
  ensure
    rs.close if rs
    cstmt.close if cstmt
  end</description>
		<content:encoded><![CDATA[<p>perhaps something like<br />
psql.pkg.test {|row| row.each {|col| }</p>
<p>I guess an enhanced version could support batch fetching similar to find_in_batches.<br />
I have managed to call using a ref-cursor using the following jdbc code &#8211; not a generic solution and only for JRuby but found no references on google so i will paste it here&#8230;.</p>
<p>  def test<br />
    conn = ActiveRecord::Base.connection.raw_connection<br />
    cstmt = conn.prepareCall(&#8220;begin  test(?); end;&#8221;)<br />
    cstmt.registerOutParameter(1,  -10) # -10  == oracle.jdbc.driver.OracleTypes.CURSOR<br />
    cstmt.execute<br />
    rs = cstmt.getObject(1)<br />
    rsm = rs.getMetaData<br />
    columnCount = rsm.getColumnCount<br />
    rows = []<br />
    while (rs.next())<br />
       row = []<br />
       for j in (1..columnCount)<br />
          row &lt;&lt; rs.getObject(j)<br />
       end<br />
       rows &lt;&lt; row<br />
    end<br />
    return rows<br />
  ensure<br />
    rs.close if rs<br />
    cstmt.close if cstmt<br />
  end</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raimonds Simanovskis</title>
		<link>http://blog.rayapps.com/2009/04/21/ruby-plsql-new-version-ruby-191-support-and-more/#comment-548</link>
		<dc:creator>Raimonds Simanovskis</dc:creator>
		<pubDate>Thu, 23 Jul 2009 08:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://rayapps.wordpress.com/?p=81#comment-548</guid>
		<description>Currently I do not support Oracle cursors as IN or OUT parameters.
It is a little bit tricky as there is no standard Ruby type that I could map returned SYS_REFCURSOR to.
If I could think of some good Ruby syntax for this case then I could try to implement it in future ruby-plsql versions.

How would you like to use returned cursor in Ruby? Would you like to fetch all rows from it or fetch one by one?</description>
		<content:encoded><![CDATA[<p>Currently I do not support Oracle cursors as IN or OUT parameters.<br />
It is a little bit tricky as there is no standard Ruby type that I could map returned SYS_REFCURSOR to.<br />
If I could think of some good Ruby syntax for this case then I could try to implement it in future ruby-plsql versions.</p>
<p>How would you like to use returned cursor in Ruby? Would you like to fetch all rows from it or fetch one by one?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcus</title>
		<link>http://blog.rayapps.com/2009/04/21/ruby-plsql-new-version-ruby-191-support-and-more/#comment-546</link>
		<dc:creator>Marcus</dc:creator>
		<pubDate>Thu, 23 Jul 2009 05:03:39 +0000</pubDate>
		<guid isPermaLink="false">http://rayapps.wordpress.com/?p=81#comment-546</guid>
		<description>Hi Raimonds, thankyou - that plsql gem is AWESOME and makes calling oracle stored procs really easily. Could you please let me know if it supports refcursors. 
I am trying to call a procedure that returns a refcursor and cant get the call syntax correct (using jruby)

Note: the stored proc is like...

procedure pkg.test ( p_cursor out sys_refcursor)
is
begin
 open p_cursor for
 select
 col1 ,
 col2
 from pkg.table1;
end test;</description>
		<content:encoded><![CDATA[<p>Hi Raimonds, thankyou &#8211; that plsql gem is AWESOME and makes calling oracle stored procs really easily. Could you please let me know if it supports refcursors.<br />
I am trying to call a procedure that returns a refcursor and cant get the call syntax correct (using jruby)</p>
<p>Note: the stored proc is like&#8230;</p>
<p>procedure pkg.test ( p_cursor out sys_refcursor)<br />
is<br />
begin<br />
 open p_cursor for<br />
 select<br />
 col1 ,<br />
 col2<br />
 from pkg.table1;<br />
end test;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leather checkbook</title>
		<link>http://blog.rayapps.com/2009/04/21/ruby-plsql-new-version-ruby-191-support-and-more/#comment-513</link>
		<dc:creator>leather checkbook</dc:creator>
		<pubDate>Sat, 23 May 2009 11:03:18 +0000</pubDate>
		<guid isPermaLink="false">http://rayapps.wordpress.com/?p=81#comment-513</guid>
		<description>They say that when buying a house the three key factors are location, location, location. Well, when looking for a useful website the factors are quality,quality,quality. The content here fits the bill exactly. Thanks a bunch. Great stuff!</description>
		<content:encoded><![CDATA[<p>They say that when buying a house the three key factors are location, location, location. Well, when looking for a useful website the factors are quality,quality,quality. The content here fits the bill exactly. Thanks a bunch. Great stuff!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bank register</title>
		<link>http://blog.rayapps.com/2009/04/21/ruby-plsql-new-version-ruby-191-support-and-more/#comment-512</link>
		<dc:creator>bank register</dc:creator>
		<pubDate>Fri, 22 May 2009 20:51:09 +0000</pubDate>
		<guid isPermaLink="false">http://rayapps.wordpress.com/?p=81#comment-512</guid>
		<description>I&#039;ve enjoyed reading your blog. Most are full of garbage, but this is really interesting - and useful too!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve enjoyed reading your blog. Most are full of garbage, but this is really interesting &#8211; and useful too!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
