The fetchNumeric() function returns the record as an array with numeric keys: 0 => value, 1=>value.
Syntax
fetchNumeric()
Arguments
No arguments.
Return value
Returns the record as an array with numeric keys: 0 => value, 1=>value.
Null, if there are no more records.
Example
Dim rs,data
set rs = DB_Query("select * from carsmake")
do while bValue(doAssignmentByRef(data,rs.fetchNumeric()))
ResponseWrite ArrayElement(data,0)
ResponseWrite ArrayElement(data,1)
loop
See also:
•QueryResult object: fetchAssoc()