I know that after doing a query, I can use cfoutput to output the results of the query by applying the query attribute like the one below:-
<cfquery name="query1" datasource="mySource">
select * from users
</cfquery>
<cfoutput query="query1">
#username#
</cfoutput>
Is there any way that I could jump to the next row of the results without using cfoutput ? Something like using a cfloop to loop from "1" to query1.RecordCount. And inside the cfloop, I'll do a "next record" thingy to jump to the next row. Is there any tag that does this ?