<?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: Reading row-by-row into Java from MySQL</title>
	<atom:link href="http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/</link>
	<description>Adrian Smith's blog</description>
	<lastBuildDate>Wed, 14 Jul 2010 07:18:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: sun tsu</title>
		<link>http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/comment-page-1/#comment-1998</link>
		<dc:creator>sun tsu</dc:creator>
		<pubDate>Mon, 19 Jan 2009 23:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/#comment-1998</guid>
		<description>Again, MySQL proves itself to be a toy. It&#039;s sad that people use this thing when better free relational DBs are available.</description>
		<content:encoded><![CDATA[<p>Again, MySQL proves itself to be a toy. It&#8217;s sad that people use this thing when better free relational DBs are available.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zunil</title>
		<link>http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/comment-page-1/#comment-1607</link>
		<dc:creator>Zunil</dc:creator>
		<pubDate>Tue, 18 Nov 2008 11:20:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/#comment-1607</guid>
		<description>useCursorFetch=true along with defaultFetchSize will solve ur issue if you are using driver version greater than 5.0.2.
Streaming will work with only one resultset/connection nad network round trip is more.</description>
		<content:encoded><![CDATA[<p>useCursorFetch=true along with defaultFetchSize will solve ur issue if you are using driver version greater than 5.0.2.<br />
Streaming will work with only one resultset/connection nad network round trip is more.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geetan</title>
		<link>http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/comment-page-1/#comment-981</link>
		<dc:creator>Geetan</dc:creator>
		<pubDate>Mon, 29 Sep 2008 10:33:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/#comment-981</guid>
		<description>Thanks! It really solved a critical problem of one of my friend. Hatsof</description>
		<content:encoded><![CDATA[<p>Thanks! It really solved a critical problem of one of my friend. Hatsof</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andi</title>
		<link>http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/comment-page-1/#comment-695</link>
		<dc:creator>Andi</dc:creator>
		<pubDate>Mon, 01 Sep 2008 10:44:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/#comment-695</guid>
		<description>Also thank you very much for this good explaination!</description>
		<content:encoded><![CDATA[<p>Also thank you very much for this good explaination!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajesh</title>
		<link>http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/comment-page-1/#comment-571</link>
		<dc:creator>Rajesh</dc:creator>
		<pubDate>Tue, 29 Jul 2008 09:59:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/#comment-571</guid>
		<description>Very nice explanation and it saved a lot of time for me. thankx a lot for posting this.

~Rajesh.B</description>
		<content:encoded><![CDATA[<p>Very nice explanation and it saved a lot of time for me. thankx a lot for posting this.</p>
<p>~Rajesh.B</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/comment-page-1/#comment-453</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Tue, 20 May 2008 22:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/#comment-453</guid>
		<description>btw, this was logged as a bug against MySQL (http://bugs.mysql.com/bug.php?id=18148).</description>
		<content:encoded><![CDATA[<p>btw, this was logged as a bug against MySQL (<a href="http://bugs.mysql.com/bug.php?id=18148" rel="nofollow">http://bugs.mysql.com/bug.php?id=18148</a>).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob</title>
		<link>http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/comment-page-1/#comment-452</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Tue, 20 May 2008 22:38:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.databasesandlife.com/reading-row-by-row-into-java-from-mysql/#comment-452</guid>
		<description>OK, I&#039;m not the only person who finds that this is crazy. I have a similar kind of use case--I want to read the whole result set in order to cache it (in a compressed form). I had to set the fetch size to 2^-31 too, but this blows up on other databases and it&#039;s non-trivial to put in code that tests for MySQL, so I&#039;m in a quandary.</description>
		<content:encoded><![CDATA[<p>OK, I&#8217;m not the only person who finds that this is crazy. I have a similar kind of use case&#8211;I want to read the whole result set in order to cache it (in a compressed form). I had to set the fetch size to 2^-31 too, but this blows up on other databases and it&#8217;s non-trivial to put in code that tests for MySQL, so I&#8217;m in a quandary.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
