irc-html Mon Jan 21 13:59:53 2002 EDT
Modified files:
/phpdoc/en/functions ibase.xml
Log:
ibase_fetch_*: incorporate user notes
Index: phpdoc/en/functions/ibase.xml
diff -u phpdoc/en/functions/ibase.xml:1.43 phpdoc/en/functions/ibase.xml:1.44
--- phpdoc/en/functions/ibase.xml:1.43 Thu Jan 17 22:32:23 2002
+++ phpdoc/en/functions/ibase.xml Mon Jan 21 13:59:53 2002
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.43 $ -->
+<!-- $Revision: 1.44 $ -->
<reference id="ref.ibase">
<title>InterBase functions</title>
<titleabbrev>InterBase</titleabbrev>
@@ -297,10 +297,22 @@
</paramdef>
</funcprototype>
</funcsynopsis>
- <simpara>
- Returns the next row specified by the result identifier obtained
- using the <function>ibase_query</function>.
- </simpara>
+ <para>
+ Returns an array that corresponds to the fetched row, or &false;
+ if there are no more rows.
+ </para>
+ <para>
+ <function>ibase_fetch_row</function> fetches one row of data from
+ the result associated with the specified
+ <parameter>result_identifier</parameter>. The row is returned as
+ an array. Each result column is stored in an array offset,
+ starting at offset 0.
+ </para>
+ <para>
+ Subsequent call to <function>ibase_fetch_row</function> would
+ return the next row in the result set, or &false; if there are no
+ more rows.
+ </para>
</refsect1>
</refentry>
@@ -339,6 +351,11 @@
]]>
</programlisting>
</informalexample>
+ </para>
+ <para>
+ Subsequent call to <function>ibase_fetch_object</function> would
+ return the next row in the result set, or &false; if there are no
+ more rows.
</para>
<para>
See also <function>ibase_fetch_row</function>.