<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for Software Development &#038; Beyond</title>
	<link>http://www.mortench.net/blog</link>
	<description>A blog mostly about my ongoing experiences in the software R&#038;D business</description>
	<pubDate>Wed, 20 Aug 2008 09:16:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>

	<item>
		<title>Comment on Rails, Stored Procedures, Migrations, Mysql 5+ and &#8230; Trouble! by foo</title>
		<link>http://www.mortench.net/blog/2007/03/31/rails-stored-procedures-migrations-mysql-5-and-trouble/#comment-4711</link>
		<author>foo</author>
		<pubDate>Thu, 15 Nov 2007 10:59:45 +0000</pubDate>
		<guid>http://www.mortench.net/blog/2007/03/31/rails-stored-procedures-migrations-mysql-5-and-trouble/#comment-4711</guid>
					<description>the mysql c api has information on "Multiple Statement Execution": http://dev.mysql.com/doc/refman/5.0/en/c-api-multiple-queries.html</description>
		<content:encoded><![CDATA[<p>the mysql c api has information on &#8220;Multiple Statement Execution&#8221;: <a href="http://dev.mysql.com/doc/refman/5.0/en/c-api-multiple-queries.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/c-api-multiple-queries.html</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Rails, Stored Procedures, Migrations, Mysql 5+ and &#8230; Trouble! by foo</title>
		<link>http://www.mortench.net/blog/2007/03/31/rails-stored-procedures-migrations-mysql-5-and-trouble/#comment-4710</link>
		<author>foo</author>
		<pubDate>Thu, 15 Nov 2007 10:19:12 +0000</pubDate>
		<guid>http://www.mortench.net/blog/2007/03/31/rails-stored-procedures-migrations-mysql-5-and-trouble/#comment-4710</guid>
					<description>i have the same problem when trying to create my stored procedures from within migrations (loading the mysql scripts from files) and 
i really wonder what the "meaningless error" was in your case? 
for me it seems as if the execute method does not take scripts with multiple sql commands but expects each sql command one by one.</description>
		<content:encoded><![CDATA[<p>i have the same problem when trying to create my stored procedures from within migrations (loading the mysql scripts from files) and<br />
i really wonder what the &#8220;meaningless error&#8221; was in your case?<br />
for me it seems as if the execute method does not take scripts with multiple sql commands but expects each sql command one by one.</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Rails, Stored Procedures, Migrations, Mysql 5+ and &#8230; Trouble! by Luke</title>
		<link>http://www.mortench.net/blog/2007/03/31/rails-stored-procedures-migrations-mysql-5-and-trouble/#comment-3864</link>
		<author>Luke</author>
		<pubDate>Sat, 26 May 2007 16:33:45 +0000</pubDate>
		<guid>http://www.mortench.net/blog/2007/03/31/rails-stored-procedures-migrations-mysql-5-and-trouble/#comment-3864</guid>
					<description>I've been working on the same problem for quite some time using Rails 116. I created a plugin with install instructions here: http://rubyscriptconsole.com/articles/2007/01/13/mysql-routine-migration-mrm-plugin/. 

I'm surprised by the lack of discussion and alternatives for using stored procs in Rails. My plugin is far from a perfect solution, but it has been a functioning tool for me for about 6 mos. now. As I mention several times on my blog, I've worked on exactly 0 development projects that didn't require at a least few stored procs for some heavy-lifting chores. Integrating stored routine migrations into Rails was a must for me, so I had to create something.

Anyway, look forward to getting your feedback.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been working on the same problem for quite some time using Rails 116. I created a plugin with install instructions here: <a href="http://rubyscriptconsole.com/articles/2007/01/13/mysql-routine-migration-mrm-plugin/." rel="nofollow">http://rubyscriptconsole.com/articles/2007/01/13/mysql-routine-migration-mrm-plugin/.</a> </p>
<p>I&#8217;m surprised by the lack of discussion and alternatives for using stored procs in Rails. My plugin is far from a perfect solution, but it has been a functioning tool for me for about 6 mos. now. As I mention several times on my blog, I&#8217;ve worked on exactly 0 development projects that didn&#8217;t require at a least few stored procs for some heavy-lifting chores. Integrating stored routine migrations into Rails was a must for me, so I had to create something.</p>
<p>Anyway, look forward to getting your feedback.</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Rails, Stored Procedures, Migrations, Mysql 5+ and &#8230; Trouble! by Fung</title>
		<link>http://www.mortench.net/blog/2007/03/31/rails-stored-procedures-migrations-mysql-5-and-trouble/#comment-3863</link>
		<author>Fung</author>
		<pubDate>Thu, 24 May 2007 19:09:53 +0000</pubDate>
		<guid>http://www.mortench.net/blog/2007/03/31/rails-stored-procedures-migrations-mysql-5-and-trouble/#comment-3863</guid>
					<description>Thank you so much!

I have tried executing sql file and hacking the MySql adapter. And found your  solution here by Google.

However, I got into another situation that it failed for testing: the testing DB is missing the stored procedures.

I tried to add them manually, but those SPs were dropped when I ran the tests ($rake test:units) again.

Do you have a way out there?

Thanks</description>
		<content:encoded><![CDATA[<p>Thank you so much!</p>
<p>I have tried executing sql file and hacking the MySql adapter. And found your  solution here by Google.</p>
<p>However, I got into another situation that it failed for testing: the testing DB is missing the stored procedures.</p>
<p>I tried to add them manually, but those SPs were dropped when I ran the tests ($rake test:units) again.</p>
<p>Do you have a way out there?</p>
<p>Thanks</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Rails, Stored Procedures, Migrations, Mysql 5+ and &#8230; Trouble! by Chris R</title>
		<link>http://www.mortench.net/blog/2007/03/31/rails-stored-procedures-migrations-mysql-5-and-trouble/#comment-3177</link>
		<author>Chris R</author>
		<pubDate>Mon, 02 Apr 2007 16:16:51 +0000</pubDate>
		<guid>http://www.mortench.net/blog/2007/03/31/rails-stored-procedures-migrations-mysql-5-and-trouble/#comment-3177</guid>
					<description>@Rasmus:

Cough! Splutter! Oracle have only had stored procedures for a couple of years? I think you should check your history. PL/SQL was first released in *1992* as an optional extension to Oracle 6.</description>
		<content:encoded><![CDATA[<p>@Rasmus:</p>
<p>Cough! Splutter! Oracle have only had stored procedures for a couple of years? I think you should check your history. PL/SQL was first released in *1992* as an optional extension to Oracle 6.</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Rails, Stored Procedures, Migrations, Mysql 5+ and &#8230; Trouble! by Rasmus</title>
		<link>http://www.mortench.net/blog/2007/03/31/rails-stored-procedures-migrations-mysql-5-and-trouble/#comment-3156</link>
		<author>Rasmus</author>
		<pubDate>Mon, 02 Apr 2007 06:59:54 +0000</pubDate>
		<guid>http://www.mortench.net/blog/2007/03/31/rails-stored-procedures-migrations-mysql-5-and-trouble/#comment-3156</guid>
					<description>Hmmm it looks like you've been playing alot with RoR since you have the time to actually work with legacy databases and need to call stored procedures. Though I can think of scenarios where I need to do a stored procedure I try all I can to avoid it. 

One could speculate....  MySql only got SPs in the most recent edition and Oracle have only had them a couple of years... Couldn't we do database driven applications before that?! Or are SPs just MS's way of keeping you on their platform?!?!

Hope to see you soon so we can go into some nerdie discussions about it... ;)</description>
		<content:encoded><![CDATA[<p>Hmmm it looks like you&#8217;ve been playing alot with RoR since you have the time to actually work with legacy databases and need to call stored procedures. Though I can think of scenarios where I need to do a stored procedure I try all I can to avoid it. </p>
<p>One could speculate&#8230;.  MySql only got SPs in the most recent edition and Oracle have only had them a couple of years&#8230; Couldn&#8217;t we do database driven applications before that?! Or are SPs just MS&#8217;s way of keeping you on their platform?!?!</p>
<p>Hope to see you soon so we can go into some nerdie discussions about it&#8230; <img src='http://www.mortench.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Breaking encapsulation with C# 2.0 partial classes by Olle Jonsson</title>
		<link>http://www.mortench.net/blog/2006/05/03/breaking-encapsulation-with-c-20-partial-classes/#comment-2952</link>
		<author>Olle Jonsson</author>
		<pubDate>Sun, 25 Mar 2007 20:39:07 +0000</pubDate>
		<guid>http://www.mortench.net/blog/2006/05/03/breaking-encapsulation-with-c-20-partial-classes/#comment-2952</guid>
					<description>Ah, glad I never unsubbed from your feed, you're a great but infreq. poster.

NIce to get to hear about innovative ways to mess with C#.</description>
		<content:encoded><![CDATA[<p>Ah, glad I never unsubbed from your feed, you&#8217;re a great but infreq. poster.</p>
<p>NIce to get to hear about innovative ways to mess with C#.</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Introducing CodeGenClipse and CodeGenJostraca by Nach</title>
		<link>http://www.mortench.net/blog/2006/06/10/13/#comment-1445</link>
		<author>Nach</author>
		<pubDate>Thu, 07 Dec 2006 20:05:05 +0000</pubDate>
		<guid>http://www.mortench.net/blog/2006/06/10/13/#comment-1445</guid>
					<description>Thanks a lot for the information and for share your knowledge, Morten.
I'll try to read it now (not to make changes... I'm just starting with eclipse). 
I hope it helps me to understand or find a way to connect processing with eclipse.

Cheers (and please, keep on),
Nach.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for the information and for share your knowledge, Morten.<br />
I&#8217;ll try to read it now (not to make changes&#8230; I&#8217;m just starting with eclipse).<br />
I hope it helps me to understand or find a way to connect processing with eclipse.</p>
<p>Cheers (and please, keep on),<br />
Nach.</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Introducing CodeGenClipse and CodeGenJostraca by mortench</title>
		<link>http://www.mortench.net/blog/2006/06/10/13/#comment-1417</link>
		<author>mortench</author>
		<pubDate>Wed, 06 Dec 2006 01:13:21 +0000</pubDate>
		<guid>http://www.mortench.net/blog/2006/06/10/13/#comment-1417</guid>
					<description>Hi Nach,

Thanks for your interest! The source is in the sourceforge subversion repository at the default subversion path for sorgeforge projects (see the sourceforge site  for general details - I don't have them at my fingertips right now as I am currently reinstalling my dev machine). Anyone can read source files using subversion but you need to be added to the project if you want to make any changes.

Cheers,
Morten</description>
		<content:encoded><![CDATA[<p>Hi Nach,</p>
<p>Thanks for your interest! The source is in the sourceforge subversion repository at the default subversion path for sorgeforge projects (see the sourceforge site  for general details - I don&#8217;t have them at my fingertips right now as I am currently reinstalling my dev machine). Anyone can read source files using subversion but you need to be added to the project if you want to make any changes.</p>
<p>Cheers,<br />
Morten</p>
]]></content:encoded>
				</item>
	<item>
		<title>Comment on Introducing CodeGenClipse and CodeGenJostraca by Nach</title>
		<link>http://www.mortench.net/blog/2006/06/10/13/#comment-1413</link>
		<author>Nach</author>
		<pubDate>Wed, 06 Dec 2006 00:01:13 +0000</pubDate>
		<guid>http://www.mortench.net/blog/2006/06/10/13/#comment-1413</guid>
					<description>Hello Morten:
After read "Your business case", please let me ask you for the plugin source.
I can't find it at the sourceforge project site.
My case: nothing about business. I'm not a programmer. Just trying to learn some Eclipse.
Objective: create a eclipse plugin to work with processing (www.processing.org).
Any help are welcome!

Thanks in advance.
Nach (owd)</description>
		<content:encoded><![CDATA[<p>Hello Morten:<br />
After read &#8220;Your business case&#8221;, please let me ask you for the plugin source.<br />
I can&#8217;t find it at the sourceforge project site.<br />
My case: nothing about business. I&#8217;m not a programmer. Just trying to learn some Eclipse.<br />
Objective: create a eclipse plugin to work with processing (www.processing.org).<br />
Any help are welcome!</p>
<p>Thanks in advance.<br />
Nach (owd)</p>
]]></content:encoded>
				</item>
</channel>
</rss>
