msql_fetch_object
Fetch row as object
&reftitle.description;
objectmsql_fetch_object
resourceresult
msql_fetch_object is similar to
msql_fetch_array, with one difference - an
object is returned, instead of an array. Indirectly, that means
that you can only access the data by the field names, and not by
their offsets (numbers are illegal property names).
Speed-wise, the function is identical to
msql_fetch_array, and almost as quick as
msql_fetch_row (the difference is
insignificant).
&reftitle.parameters;
&msql.result.description;
&reftitle.returnvalues;
Returns an object with properties that correspond to the fetched
row, or &false; if there are no more rows.
&reftitle.examples;
msql_fetch_object example
id . ': ' . $row->name . "\n";
}
msql_free_result($result);
?>
]]>
&reftitle.changelog;
&Version;
&Description;
5.0.4
A bug was fixed when retrieving data from columns containing &null;
values. Such columns were not placed into the resulting array.
&reftitle.seealso;
msql_fetch_array
msql_fetch_row
msql_data_seek
msql_result