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.