mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
A couple of corrections.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@20945 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
8c63df0722
commit
07480bd268
1 changed files with 4 additions and 4 deletions
|
@ -55,7 +55,7 @@ ibase_close ($dbh);
|
|||
<refnamediv>
|
||||
<refname>ibase_pconnect</refname>
|
||||
<refpurpose>
|
||||
Makes an persistent Interbase database connection
|
||||
Creates an persistent connection to an Interbase database.
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
|
@ -240,7 +240,7 @@ ibase_close ($dbh);
|
|||
</simpara>
|
||||
<note>
|
||||
<para>
|
||||
<function>Ibase_bind</function> is currently not functional in
|
||||
<function>ibase_bind</function> is currently not functional in
|
||||
PHP4
|
||||
</para>
|
||||
</note>
|
||||
|
@ -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);
|
|||
</para>
|
||||
<note>
|
||||
<para>
|
||||
<function>Ibase_timefmt</function> is currently not functional
|
||||
<function>Ibase_num_fields</function> is currently not functional
|
||||
in PHP4.
|
||||
</para>
|
||||
</note>
|
||||
|
|
Loading…
Reference in a new issue