int ibase_connect
InterBaseデータベースへの接続をオープンします。
例 1. ibase_connect()の例
1 2 $dbh = ibase_connect($host, $username, $password); 3 $stmt = 'SELECT * FROM tblname'; 4 $sth = ibase_query($dbh, $stmt); 5 while ( $row = ibase_fetch_object($sth) ) { 6 print $row->email . "\n"; 7 } 8 ibase_close($dbh); 9
ibase_pconnect()も参照下さい。