From 07480bd268ed3a10d46634b0b45928a8d4b85905 Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Sat, 4 Mar 2000 22:37:59 +0000 Subject: [PATCH] A couple of corrections. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@20945 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/ibase.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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.