Using ColdFusion Query's Underlying Java Methods For Query Manipulation And Logic

<!--- Loop over query. --->
<cfloop query="qTest">
	 
	<!--- Check for last row. --->
	<cfif (qTest.CurrentRow EQ qTest.RecordCount)>
		<!--- This is the last row. --->
	</cfif>
 
</cfloop>

For Cut-and-Paste