ibase_fetch_object
ibase_fetch_object
Get an object from a InterBase database
object **ibase_fetch_object** resource $result_id int $fetch_flag
Fetches a row as a pseudo-object from a given result identifier.
Subsequent calls to
return the next row in the result set.
ibase_fetch_object
result_id
An InterBase result identifier obtained either by
or .
ibase_query``ibase_execute
fetch_flag
is a combination of the constants
and
ORed together. Passing will cause this
function to return BLOB contents instead of BLOB ids. Passing
will cause this function to return
date/time values as Unix timestamps instead of as formatted strings.
fetch_flag``IBASE_TEXT``IBASE_UNIXTIME``IBASE_TEXT``IBASE_UNIXTIME
Returns an object with the next row information, or false if there are no more rows.
Voorbeeld: example
<?php
$dbh = ibase_connect($host, $username, $password);
$stmt = 'SELECT * FROM tblname';
$sth = ibase_query($dbh, $stmt);
while ($row = ibase_fetch_object($sth)) {
echo $row->email . "\n";
}
ibase_close($dbh);
?>
ibase_fetch_row``ibase_fetch_assoc