Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ibase_fetch_object(3) [php man page]

IBASE_FETCH_OBJECT(3)							 1						     IBASE_FETCH_OBJECT(3)

ibase_fetch_object - Get an object from a InterBase database

SYNOPSIS
object ibase_fetch_object (resource $result_id, [int $fetch_flag]) DESCRIPTION
Fetches a row as a pseudo-object from a given result identifier. Subsequent calls to ibase_fetch_object(3) return the next row in the result set. PARAMETERS
o $result_id - An InterBase result identifier obtained either by ibase_query(3) or ibase_execute(3). o $fetch_flag -$fetch_flag is a combination of the constants IBASE_TEXT and IBASE_UNIXTIME ORed together. Passing IBASE_TEXT will cause this function to return BLOB contents instead of BLOB ids. Passing IBASE_UNIXTIME will cause this function to return date/time values as Unix timestamps instead of as formatted strings. RETURN VALUES
Returns an object with the next row information, or FALSE if there are no more rows. EXAMPLES
Example #1 ibase_fetch_object(3) 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 . " "; } ibase_close($dbh); ?> SEE ALSO
ibase_fetch_row(3), ibase_fetch_assoc(3). PHP Documentation Group IBASE_FETCH_OBJECT(3)

Check Out this Related Man Page

ODBC_FETCH_ROW(3)							 1							 ODBC_FETCH_ROW(3)

odbc_fetch_row - Fetch a row

SYNOPSIS
bool odbc_fetch_row (resource $result_id, [int $row_number]) DESCRIPTION
Fetches a row of the data that was returned by odbc_do(3) or odbc_exec(3). After odbc_fetch_row(3) is called, the fields of that row can be accessed with odbc_result(3). PARAMETERS
o $result_id - The result identifier. o $row_number - If $row_number is not specified, odbc_fetch_row(3) will try to fetch the next row in the result set. Calls to odbc_fetch_row(3) with and without $row_number can be mixed. To step through the result more than once, you can call odbc_fetch_row(3) with $row_number 1, and then continue doing odbc_fetch_row(3) without $row_number to review the result. If a driver doesn't support fetching rows by number, the $row_number parameter is ignored. RETURN VALUES
Returns TRUE if there was a row, FALSE otherwise. PHP Documentation Group ODBC_FETCH_ROW(3)
Man Page