The fetchAssoc() function returns the record as an associative array: "field" => value.
Syntax
fetchAssoc()
Arguments
No arguments.
Return value
Returns the record as an associative array: "field" => value.
Null, if there are no matching records.
Example
dynamic record;
dynamic rs = DB.Query("select * from carsmake");
while(record = rs.fetchAssoc())
{
MVCFunctions.Echo(record["id"]);
MVCFunctions.Echo(record["make"]);
}
See also:
•QueryResult object: fetchAssoc()
•QueryResult object: fetchNumeric()