★ wanayoo — archive 1999 http://fr.php.net/manual/function.ibase-fetch-object.phpNouvelle recherche | Portail wanayoo

PHP Home Page

Manual Table of Contents
Up to InterBase
Quick Reference
English version of this pageGerman version of this pageJapanese version of this page
Italian version of this pageFrench version of this pageHungarian version of this page
Spanish version of this page is not availableDutch version of this pageBrazilian Portuguese version of this page
Korean version of this pageCzech version of this page
InterBase
* ibase_connect
* ibase_pconnect
* ibase_close
* ibase_query
* ibase_fetch_row
* ibase_fetch_object
* ibase_field_info
* ibase_free_result
* ibase_prepare
* ibase_execute
* ibase_trans
* ibase_commit
* ibase_rollback
* ibase_free_query
* ibase_timefmt
* ibase_num_fields
* ibase_errmsg

  Thanks to:
 Chek.com
 easyDNS
 VA Linux Systems

  Related sites:
Apache
MySQL
PostgreSQL
Zend Tech.

  Community:
LinuxFund.org
OSDN
Manual: ibase_fetch_object
View the source code for this pageSearch the site



Previous page
 ibase_fetch_row
 Updated
Mon, 08 Jan 2001
ibase_field_info 
Next page


ibase_fetch_object

(PHP 3>= 3.0.7, PHP 4 >= 4.0RC1)

ibase_fetch_object -- Get an object from a InterBase database

Description

object ibase_fetch_object (int result_id)

Fetches a row as a pseudo-object from a result_id obtained either by ibase_query() or ibase_execute().


<php
    $dbh = ibase_connect ($host, $username, $password);
    $stmt = 'SELECT * FROM tblname';
    $sth = ibase_query ($dbh, $stmt);
    while ($row = ibase_fetch_object ($sth)) {
        print $row->email . "\n";
    }
    ibase_close ($dbh);
?>
      

See also ibase_fetch_row().


 About Notes


Previous page
 ibase_fetch_row
 Updated
Mon, 08 Jan 2001
ibase_field_info 
Next page





Who's responsible for this?
Top of this page

Site
Hosting:



Located in
France
Elements of this website are subject to copyright.
Questions about installing or using PHP should be directed to one of the mailing lists.
Only questions about the website should be directed to webmaster@php.net.