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

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

For Cut-and-Paste