<?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: Does cfquery&#8217;s maxrows work on the ColdFusion side or the database side?</title>
	<atom:link href="http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/feed/" rel="self" type="application/rss+xml" />
	<link>http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/</link>
	<description>Jochem's tech exploits</description>
	<pubDate>Wed, 10 Jun 2026 14:47:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jochem</title>
		<link>http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/comment-page-1/#comment-142</link>
		<dc:creator>Jochem</dc:creator>
		<pubDate>Thu, 01 Jan 2009 17:28:36 +0000</pubDate>
		<guid isPermaLink="false">http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/#comment-142</guid>
		<description>@Allen: Have you tried my example code? I think it shows quite clearly there is a difference betwen maxrows and the MS SQL Server LIMIT clause. Have you proof to the contrary?</description>
		<content:encoded><![CDATA[<p>@Allen: Have you tried my example code? I think it shows quite clearly there is a difference betwen maxrows and the MS SQL Server LIMIT clause. Have you proof to the contrary?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jochem</title>
		<link>http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/comment-page-1/#comment-141</link>
		<dc:creator>Jochem</dc:creator>
		<pubDate>Thu, 01 Jan 2009 17:25:59 +0000</pubDate>
		<guid isPermaLink="false">http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/#comment-141</guid>
		<description>@Aaron: The latest version, no updates.</description>
		<content:encoded><![CDATA[<p>@Aaron: The latest version, no updates.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jochem</title>
		<link>http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/comment-page-1/#comment-140</link>
		<dc:creator>Jochem</dc:creator>
		<pubDate>Thu, 01 Jan 2009 17:25:17 +0000</pubDate>
		<guid isPermaLink="false">http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/#comment-140</guid>
		<description>The SQL to use to limit the number of records returned from the database to ColdFusion depends on the database. For MS SQL Server, use &lt;a href="http://msdn.microsoft.com/en-us/library/ms189463(SQL.90).aspx" rel="nofollow"&gt;TOP&lt;/a&gt;. For PostgreSQL, use &lt;a href="http://www.postgresql.org/docs/8.3/static/sql-select.html#SQL-LIMIT" rel="nofollow"&gt;LIMIT&lt;/a&gt;. For other databases check their manuals.</description>
		<content:encoded><![CDATA[<p>The SQL to use to limit the number of records returned from the database to ColdFusion depends on the database. For MS SQL Server, use <a href="http://msdn.microsoft.com/en-us/library/ms189463(SQL.90).aspx" rel="nofollow">TOP</a>. For PostgreSQL, use <a href="http://www.postgresql.org/docs/8.3/static/sql-select.html#SQL-LIMIT" rel="nofollow">LIMIT</a>. For other databases check their manuals.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allen</title>
		<link>http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/comment-page-1/#comment-139</link>
		<dc:creator>Allen</dc:creator>
		<pubDate>Wed, 24 Dec 2008 22:33:45 +0000</pubDate>
		<guid isPermaLink="false">http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/#comment-139</guid>
		<description>Doesn't this function the same as many DBs?  For example, I thought when using MS SQL server that in doing a query like "select top 7 * from someTable" that it was select all records in that table, only it returned 7 to you.</description>
		<content:encoded><![CDATA[<p>Doesn&#8217;t this function the same as many DBs?  For example, I thought when using MS SQL server that in doing a query like &#8220;select top 7 * from someTable&#8221; that it was select all records in that table, only it returned 7 to you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron Longnion</title>
		<link>http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/comment-page-1/#comment-137</link>
		<dc:creator>Aaron Longnion</dc:creator>
		<pubDate>Thu, 18 Dec 2008 09:49:46 +0000</pubDate>
		<guid isPermaLink="false">http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/#comment-137</guid>
		<description>What version of CF are you using?  And what updaters and hot fixes have been applied?</description>
		<content:encoded><![CDATA[<p>What version of CF are you using?  And what updaters and hot fixes have been applied?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wim</title>
		<link>http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/comment-page-1/#comment-135</link>
		<dc:creator>Wim</dc:creator>
		<pubDate>Thu, 18 Dec 2008 07:13:13 +0000</pubDate>
		<guid isPermaLink="false">http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/#comment-135</guid>
		<description>So, when I want to limit the amount of data returned from the DB, what SQL statement should I use?</description>
		<content:encoded><![CDATA[<p>So, when I want to limit the amount of data returned from the DB, what SQL statement should I use?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raul Riera</title>
		<link>http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/comment-page-1/#comment-133</link>
		<dc:creator>Raul Riera</dc:creator>
		<pubDate>Wed, 17 Dec 2008 22:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://jochem.vandieten.net/2008/12/17/does-cfquerys-maxrows-work-on-the-coldfusion-side-or-the-database-side/#comment-133</guid>
		<description>Hmmm I see, I guess you could use as proof the SQL returned in the query object, if there is no LIMIT (mySQL) in there, then you are right... The sun is shinning a little darker</description>
		<content:encoded><![CDATA[<p>Hmmm I see, I guess you could use as proof the SQL returned in the query object, if there is no LIMIT (mySQL) in there, then you are right&#8230; The sun is shinning a little darker</p>
]]></content:encoded>
	</item>
</channel>
</rss>
