Gold Vision Communications / USA
 GOLDVISION.COM
Serving the Multimedia Community since 1989.
English Site | German Site 

 Web Hosting

 Virtual Dedicated Servers

 Chequeo de dominio

 Haga su pedido

 Estado del pedido

 Support

 Contáctenos

 Download

 Network

 Network Status

 Webdesign / Templates

 Efectuar pago

 Terms & Conditions

 Imprimir

 Notas Legales

 Declaración de Privacidad
  PHP / ibase_fetch_object
ibase_fetch_object

ibase_fetch_object

(PHP 3>= 3.0.7, PHP 4 )

ibase_fetch_object --  Liest einen Datensatz einer InterBase-Datenbank als Objekt ein

Beschreibung:

object ibase_fetch_object ( int result_id)

Liest die Daten der per ibase_query() oder ibase_execute() gewonnenen result_id in ein Pseudo-Objekt ein.

<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);
?>

Siehe auch ibase_fetch_row().


© 1998-2007 Gold Vision Communications All Rights Reserved.