Query: ibase_fetch_object
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
IBASE_FETCH_OBJECT(3) 1 IBASE_FETCH_OBJECT(3) ibase_fetch_object - Get an object from a InterBase databaseSYNOPSISobject ibase_fetch_object (resource $result_id, [int $fetch_flag])DESCRIPTIONFetches 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.PARAMETERSo $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 VALUESReturns an object with the next row information, or FALSE if there are no more rows.EXAMPLESExample #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 ALSOibase_fetch_row(3), ibase_fetch_assoc(3). PHP Documentation Group IBASE_FETCH_OBJECT(3)
Related Man Pages |
---|
odbc_fetch_row(3) - php |
ibase_connect(3) - php |
ibase_execute(3) - php |
ibase_query(3) - php |
ifx_fetch_row(3) - php |
Similar Topics in the Unix Linux Community |
---|
Meaning of $var->{"@$row[0]"}=" "; ??? |
BLOB: 1.0 Released! |
Add value of each row when each row has different data ype |