<?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: CPK 0.6.2 - the &#8220;Santiago&#8221; release</title>
	<atom:link href="http://drnicwilliams.com/2006/08/03/cpk-062-the-santiago-release/feed/" rel="self" type="application/rss+xml" />
	<link>http://drnicwilliams.com/2006/08/03/cpk-062-the-santiago-release/</link>
	<description>Ruby makes Rails, Javascript makes Ajax, Dr Nic makes Magic</description>
	<pubDate>Sun, 20 Jul 2008 23:45:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Dr Nic</title>
		<link>http://drnicwilliams.com/2006/08/03/cpk-062-the-santiago-release/#comment-237</link>
		<dc:creator>Dr Nic</dc:creator>
		<pubDate>Thu, 31 Aug 2006 14:13:15 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/2006/08/03/cpk-062-the-santiago-release/#comment-237</guid>
		<description>We may need to add per-adapter overrides for the sql generation. I was naive to assume that the SQL would be the same for all *SQL systems. On the forum, I've been solve an issue for SQL Server. That solution should be generic for other *SQL, and thus a general improvement.

This should also fix your 2nd problem. Check it out.

I'm not sure what you mean by quoting numerical items. Can you start a thread on the forum with an example?

http://groups.google.com/group/compositekeys</description>
		<content:encoded><![CDATA[<p>We may need to add per-adapter overrides for the sql generation. I was naive to assume that the SQL would be the same for all *SQL systems. On the forum, I&#8217;ve been solve an issue for SQL Server. That solution should be generic for other *SQL, and thus a general improvement.</p>
<p>This should also fix your 2nd problem. Check it out.</p>
<p>I&#8217;m not sure what you mean by quoting numerical items. Can you start a thread on the forum with an example?</p>
<p><a href="http://groups.google.com/group/compositekeys" rel="nofollow">http://groups.google.com/group/compositekeys</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Milhouse</title>
		<link>http://drnicwilliams.com/2006/08/03/cpk-062-the-santiago-release/#comment-236</link>
		<dc:creator>Milhouse</dc:creator>
		<pubDate>Thu, 31 Aug 2006 14:05:15 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/2006/08/03/cpk-062-the-santiago-release/#comment-236</guid>
		<description>Thanks, I hacked away at the Ruby on Rails IBM DB2 adapter and got it to work with my iSeries (used existing ADO driver thru DBI)! Of course now my challenge is to modify your Composite_keys code to work with the iSeries DB2 dialect. There are two issues. First, DB2 doesn't like quoting numerical values in sql. Second, the:  Select (OrderID,LineID) in ('A45',1) ... doesn't work in DB2. 

p.s.  Have you looked at rBatis  (iBatis for Ruby) ( http://ibatis.apache.org/docs/ruby/ )? I got that to work with my iSeries driver, and it lets you write your own sql... lots of work, but then have flexiblity to</description>
		<content:encoded><![CDATA[<p>Thanks, I hacked away at the Ruby on Rails IBM DB2 adapter and got it to work with my iSeries (used existing ADO driver thru DBI)! Of course now my challenge is to modify your Composite_keys code to work with the iSeries DB2 dialect. There are two issues. First, DB2 doesn&#8217;t like quoting numerical values in sql. Second, the:  Select (OrderID,LineID) in (&#8217;A45&#8242;,1) &#8230; doesn&#8217;t work in DB2. </p>
<p>p.s.  Have you looked at rBatis  (iBatis for Ruby) ( <a href="http://ibatis.apache.org/docs/ruby/" rel="nofollow">http://ibatis.apache.org/docs/ruby/</a> )? I got that to work with my iSeries driver, and it lets you write your own sql&#8230; lots of work, but then have flexiblity to</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dr Nic</title>
		<link>http://drnicwilliams.com/2006/08/03/cpk-062-the-santiago-release/#comment-5</link>
		<dc:creator>Dr Nic</dc:creator>
		<pubDate>Thu, 03 Aug 2006 20:40:52 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/2006/08/03/cpk-062-the-santiago-release/#comment-5</guid>
		<description>I'll definitely post up the composite keys example on the cpk website when you're done. I wrote an initial webpage (http://compositekeys.rubyforge.org) and Dave Thomas gave some very useful feedback. So refactoring it is the next priority so newcomers (who are probably also new to Rails/Ruby) can feel welcome and empowered.

Re iSeries drivers - if you feel bold, look through all the connection adapters in ActiveRecord gem and see if you can't start to build the adapter you need. Prob one of them is a good starting place.</description>
		<content:encoded><![CDATA[<p>I&#8217;ll definitely post up the composite keys example on the cpk website when you&#8217;re done. I wrote an initial webpage (http://compositekeys.rubyforge.org) and Dave Thomas gave some very useful feedback. So refactoring it is the next priority so newcomers (who are probably also new to Rails/Ruby) can feel welcome and empowered.</p>
<p>Re iSeries drivers - if you feel bold, look through all the connection adapters in ActiveRecord gem and see if you can&#8217;t start to build the adapter you need. Prob one of them is a good starting place.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Milhouse</title>
		<link>http://drnicwilliams.com/2006/08/03/cpk-062-the-santiago-release/#comment-4</link>
		<dc:creator>Milhouse</dc:creator>
		<pubDate>Thu, 03 Aug 2006 20:09:09 +0000</pubDate>
		<guid isPermaLink="false">http://drnicwilliams.com/2006/08/03/cpk-062-the-santiago-release/#comment-4</guid>
		<description>Dr. Nic, Thanks for all your hard work. And yes, I love migrations,so I'd use it for composite keys.

Our main machine here is an iSeries (AS/400). The database I want to try Rails out on contains.... composite keys! This is what I've been waiting for. I had just started learning rBatis, when I found out about your   project. rBatis is flexible, but you lose the ability to use Rails relationships.

Now, I'm just waiting for the IBM DB2 adaptor/driver for iSeries.... Win/Linux etc. already supported by IBM.

I'm currently working on a sample Rails app using composite keys... might be nice to post a rails example for folks to get started with. I just grabbed the models from your tests as a start, and  built the test data from sql... works good so far.</description>
		<content:encoded><![CDATA[<p>Dr. Nic, Thanks for all your hard work. And yes, I love migrations,so I&#8217;d use it for composite keys.</p>
<p>Our main machine here is an iSeries (AS/400). The database I want to try Rails out on contains&#8230;. composite keys! This is what I&#8217;ve been waiting for. I had just started learning rBatis, when I found out about your   project. rBatis is flexible, but you lose the ability to use Rails relationships.</p>
<p>Now, I&#8217;m just waiting for the IBM DB2 adaptor/driver for iSeries&#8230;. Win/Linux etc. already supported by IBM.</p>
<p>I&#8217;m currently working on a sample Rails app using composite keys&#8230; might be nice to post a rails example for folks to get started with. I just grabbed the models from your tests as a start, and  built the test data from sql&#8230; works good so far.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
