From a43883eb2eec021157342d1af264075067183a35 Mon Sep 17 00:00:00 2001 From: Louis-Arnaud Date: Sun, 16 Aug 2026 19:46:09 +0200 Subject: [PATCH 1/3] ext/odbc: Document row default value change to null in fetch_object/array/into (8.4.0) --- reference/uodbc/functions/odbc-fetch-array.xml | 4 +++- reference/uodbc/functions/odbc-fetch-into.xml | 4 +++- reference/uodbc/functions/odbc-fetch-object.xml | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/reference/uodbc/functions/odbc-fetch-array.xml b/reference/uodbc/functions/odbc-fetch-array.xml index 400cc371b3a5..75792b7ef558 100644 --- a/reference/uodbc/functions/odbc-fetch-array.xml +++ b/reference/uodbc/functions/odbc-fetch-array.xml @@ -65,7 +65,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..7702836d7e33 100644 --- a/reference/uodbc/functions/odbc-fetch-into.xml +++ b/reference/uodbc/functions/odbc-fetch-into.xml @@ -77,7 +77,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..d0fa7741be1a 100644 --- a/reference/uodbc/functions/odbc-fetch-object.xml +++ b/reference/uodbc/functions/odbc-fetch-object.xml @@ -65,7 +65,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. From 571f041aa6f368e1ce3b6ceac8cf2bbea16bbef7 Mon Sep 17 00:00:00 2001 From: lacatoire Date: Mon, 17 Aug 2026 13:12:13 +0200 Subject: [PATCH 2/3] ext/odbc: Align the row parameter descriptions with the new default --- reference/uodbc/functions/odbc-fetch-array.xml | 5 ++++- reference/uodbc/functions/odbc-fetch-into.xml | 5 ++++- reference/uodbc/functions/odbc-fetch-object.xml | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/reference/uodbc/functions/odbc-fetch-array.xml b/reference/uodbc/functions/odbc-fetch-array.xml index 75792b7ef558..719286bf71bb 100644 --- a/reference/uodbc/functions/odbc-fetch-array.xml +++ b/reference/uodbc/functions/odbc-fetch-array.xml @@ -34,7 +34,10 @@ 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. diff --git a/reference/uodbc/functions/odbc-fetch-into.xml b/reference/uodbc/functions/odbc-fetch-into.xml index 7702836d7e33..28831450e7a8 100644 --- a/reference/uodbc/functions/odbc-fetch-into.xml +++ b/reference/uodbc/functions/odbc-fetch-into.xml @@ -46,7 +46,10 @@ 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. diff --git a/reference/uodbc/functions/odbc-fetch-object.xml b/reference/uodbc/functions/odbc-fetch-object.xml index d0fa7741be1a..e0d8dbc0062f 100644 --- a/reference/uodbc/functions/odbc-fetch-object.xml +++ b/reference/uodbc/functions/odbc-fetch-object.xml @@ -34,7 +34,10 @@ 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. From 6f75a42c7a851747360f62fff727f986fbc1991a Mon Sep 17 00:00:00 2001 From: lacatoire Date: Mon, 17 Aug 2026 13:21:08 +0200 Subject: [PATCH 3/3] ext/odbc: Use simpara for the row parameter descriptions --- reference/uodbc/functions/odbc-fetch-array.xml | 4 ++-- reference/uodbc/functions/odbc-fetch-into.xml | 4 ++-- reference/uodbc/functions/odbc-fetch-object.xml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/reference/uodbc/functions/odbc-fetch-array.xml b/reference/uodbc/functions/odbc-fetch-array.xml index 719286bf71bb..512e95b30280 100644 --- a/reference/uodbc/functions/odbc-fetch-array.xml +++ b/reference/uodbc/functions/odbc-fetch-array.xml @@ -33,12 +33,12 @@ row - + 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. - + diff --git a/reference/uodbc/functions/odbc-fetch-into.xml b/reference/uodbc/functions/odbc-fetch-into.xml index 28831450e7a8..fb62debace8e 100644 --- a/reference/uodbc/functions/odbc-fetch-into.xml +++ b/reference/uodbc/functions/odbc-fetch-into.xml @@ -45,12 +45,12 @@ row - + 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. - + diff --git a/reference/uodbc/functions/odbc-fetch-object.xml b/reference/uodbc/functions/odbc-fetch-object.xml index e0d8dbc0062f..fb2814a83d8b 100644 --- a/reference/uodbc/functions/odbc-fetch-object.xml +++ b/reference/uodbc/functions/odbc-fetch-object.xml @@ -33,12 +33,12 @@ row - + 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. - +