diff --git a/functions/ibase.xml b/functions/ibase.xml index 4515acf9f6..c52c9b7708 100644 --- a/functions/ibase.xml +++ b/functions/ibase.xml @@ -55,7 +55,7 @@ ibase_close ($dbh); ibase_pconnect - Makes an persistent Interbase database connection + Creates an persistent connection to an Interbase database. @@ -240,7 +240,7 @@ ibase_close ($dbh); - Ibase_bind is currently not functional in + ibase_bind is currently not functional in PHP4 @@ -331,7 +331,7 @@ $dbh = ibase_connect ($host, $username, $password); $stmt = 'SELECT * FROM tblname'; $sth = ibase_query ($dbh, $stmt); -if ( ibase_num_rows($sth) > 0 ) { +if ( ibase_num_fields($sth) > 0 ) { while ($row = ibase_fetch_object ($sth)) { print $row->email . "\n"; } @@ -348,7 +348,7 @@ ibase_close ($dbh); - Ibase_timefmt is currently not functional + Ibase_num_fields is currently not functional in PHP4.