From e11e64d83abc555b18ef55206df37c61d275a964 Mon Sep 17 00:00:00 2001 From: irc-html Date: Mon, 21 Jan 2002 18:59:53 +0000 Subject: [PATCH] ibase_fetch_*: incorporate user notes git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@68343 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/ibase.xml | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/functions/ibase.xml b/functions/ibase.xml index 42698b47f9..29b834b386 100644 --- a/functions/ibase.xml +++ b/functions/ibase.xml @@ -1,5 +1,5 @@ - + InterBase functions InterBase @@ -297,10 +297,22 @@ magic_quotes_sybase = On - - Returns the next row specified by the result identifier obtained - using the ibase_query. - + + Returns an array that corresponds to the fetched row, or &false; + if there are no more rows. + + + ibase_fetch_row fetches one row of data from + the result associated with the specified + result_identifier. The row is returned as + an array. Each result column is stored in an array offset, + starting at offset 0. + + + Subsequent call to ibase_fetch_row would + return the next row in the result set, or &false; if there are no + more rows. + @@ -340,6 +352,11 @@ magic_quotes_sybase = On + + Subsequent call to ibase_fetch_object would + return the next row in the result set, or &false; if there are no + more rows. + See also ibase_fetch_row.