Slow down cfloop query -Is there a way to slow down the cfloop query?
I have a query
<cfquery name="score" datasource="cdb" cachedwithin="#createTimespan(0,0,0,0)#">
SELECT * FROM cds_master WHERE gw =3
</cfquery>
I want to loop through and output the results, but when I do it loops so quickly you cant even see the output.
Is there a way to slow down the cfloop query?
Here is the current code
<cfloop query="score">
<cfoutput>#data#</cfoutput>
</cfloop>
Proposed
<cfloop query="score">
<cfoutput>#data#</cfoutput>....hesitate 10 seconds
</cfloop>
