QueryCurrentRow()

return the row where the pointer of the query is pointing ATM

QueryCurrentRow( query=query );

Returns: Numeric

Argument Description
query
query, required

The query from which to return the current row index.

Examples

myQry=QueryNew("id,name","Integer,VarChar",[[99,'sm'],[55,'mk']]);
cfloop( query="myQry"){
	writeDump(querycurrentrow(myQry));
}

See also