Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions reference/uodbc/functions/odbc-fetch-array.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,12 @@
<varlistentry>
<term><parameter>row</parameter></term>
<listitem>
<para>
Optionally choose which row number to retrieve.
</para>
<simpara>
The 1-based number of the row to retrieve. If omitted or &null;, the
next row of the result set is fetched, as
<function>odbc_fetch_row</function> does. If the driver does not
support fetching rows by number, this parameter is ignored.
</simpara>
</listitem>
</varlistentry>
</variablelist>
Expand Down Expand Up @@ -65,7 +68,9 @@
<row>
<entry>8.4.0</entry>
<entry>
<parameter>row</parameter> is now nullable.
<parameter>row</parameter> is now nullable, and its default value
changed from <literal>-1</literal> to &null;, consistent with
<function>odbc_fetch_row</function>.
</entry>
</row>
</tbody>
Expand Down
13 changes: 9 additions & 4 deletions reference/uodbc/functions/odbc-fetch-into.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,12 @@
<varlistentry>
<term><parameter>row</parameter></term>
<listitem>
<para>
The row number.
</para>
<simpara>
The 1-based number of the row to fetch. If omitted or &null;, the
next row of the result set is fetched, as
<function>odbc_fetch_row</function> does. If the driver does not
support fetching rows by number, this parameter is ignored.
</simpara>
</listitem>
</varlistentry>
</variablelist>
Expand Down Expand Up @@ -77,7 +80,9 @@
<row>
<entry>8.4.0</entry>
<entry>
<parameter>row</parameter> is now nullable.
<parameter>row</parameter> is now nullable, and its default value
changed from <literal>0</literal> to &null;, consistent with
<function>odbc_fetch_row</function>.
</entry>
</row>
</tbody>
Expand Down
13 changes: 9 additions & 4 deletions reference/uodbc/functions/odbc-fetch-object.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,12 @@
<varlistentry>
<term><parameter>row</parameter></term>
<listitem>
<para>
Optionally choose which row number to retrieve.
</para>
<simpara>
The 1-based number of the row to retrieve. If omitted or &null;, the
next row of the result set is fetched, as
<function>odbc_fetch_row</function> does. If the driver does not
support fetching rows by number, this parameter is ignored.
</simpara>
</listitem>
</varlistentry>
</variablelist>
Expand Down Expand Up @@ -65,7 +68,9 @@
<row>
<entry>8.4.0</entry>
<entry>
<parameter>row</parameter> is now nullable.
<parameter>row</parameter> is now nullable, and its default value
changed from <literal>-1</literal> to &null;, consistent with
<function>odbc_fetch_row</function>.
</entry>
</row>
</tbody>
Expand Down