diff --git a/reference/uodbc/functions/odbc-fetch-array.xml b/reference/uodbc/functions/odbc-fetch-array.xml index 400cc371b3a5..512e95b30280 100644 --- a/reference/uodbc/functions/odbc-fetch-array.xml +++ b/reference/uodbc/functions/odbc-fetch-array.xml @@ -33,9 +33,12 @@ row - - Optionally choose which row number to retrieve. - + + The 1-based number of the row to retrieve. If omitted or &null;, the + next row of the result set is fetched, as + odbc_fetch_row does. If the driver does not + support fetching rows by number, this parameter is ignored. + @@ -65,7 +68,9 @@ 8.4.0 - row is now nullable. + row is now nullable, and its default value + changed from -1 to &null;, consistent with + odbc_fetch_row. diff --git a/reference/uodbc/functions/odbc-fetch-into.xml b/reference/uodbc/functions/odbc-fetch-into.xml index 3642c9c89335..fb62debace8e 100644 --- a/reference/uodbc/functions/odbc-fetch-into.xml +++ b/reference/uodbc/functions/odbc-fetch-into.xml @@ -45,9 +45,12 @@ row - - The row number. - + + The 1-based number of the row to fetch. If omitted or &null;, the + next row of the result set is fetched, as + odbc_fetch_row does. If the driver does not + support fetching rows by number, this parameter is ignored. + @@ -77,7 +80,9 @@ 8.4.0 - row is now nullable. + row is now nullable, and its default value + changed from 0 to &null;, consistent with + odbc_fetch_row. diff --git a/reference/uodbc/functions/odbc-fetch-object.xml b/reference/uodbc/functions/odbc-fetch-object.xml index 318446855c96..fb2814a83d8b 100644 --- a/reference/uodbc/functions/odbc-fetch-object.xml +++ b/reference/uodbc/functions/odbc-fetch-object.xml @@ -33,9 +33,12 @@ row - - Optionally choose which row number to retrieve. - + + The 1-based number of the row to retrieve. If omitted or &null;, the + next row of the result set is fetched, as + odbc_fetch_row does. If the driver does not + support fetching rows by number, this parameter is ignored. + @@ -65,7 +68,9 @@ 8.4.0 - row is now nullable. + row is now nullable, and its default value + changed from -1 to &null;, consistent with + odbc_fetch_row.