Re: dumping the current query row

2005-01-21 Thread Qasim Rasheed
You can use this function cffunction name=querySingleRowDump returntype=query cfargument name=q type=query required=true / cfargument name=r type=numeric required=true / cfset var ret = querynew( arguments.q.columnlist ) cfset var i = cfset queryaddrow( ret )

RE: dumping the current query row

2005-01-21 Thread Dave Watts
How would I dump the current row that I'm outputting? For example: cfoutput query=qryName cfdump var=#qryName# /cfoutput This dumps the whole query (a bunch of times). I just want the current row being outputted. A query object is essentially a structure of arrays, in