From d2640c89f5eb5670b7afae9b25aea5f5d75a0e65 Mon Sep 17 00:00:00 2001 From: Yoshinari Takaoka Date: Mon, 6 Nov 2023 20:50:58 +0900 Subject: [PATCH 1/3] [PHP 8.3] odbc_autocommit $enable parameter is now nullable. --- reference/uodbc/functions/odbc-autocommit.xml | 28 +++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/reference/uodbc/functions/odbc-autocommit.xml b/reference/uodbc/functions/odbc-autocommit.xml index e16f348aaf94..9576a01638da 100644 --- a/reference/uodbc/functions/odbc-autocommit.xml +++ b/reference/uodbc/functions/odbc-autocommit.xml @@ -10,7 +10,7 @@ intboolodbc_autocommit resourceodbc - boolenable&false; + boolenablenull Toggles autocommit behaviour. @@ -35,7 +35,8 @@ If enable is &true;, auto-commit is enabled, if - it is &false; auto-commit is disabled. + it is &false; auto-commit is disabled. If &null; is passed, this function + returns auto-commit status for odbc. @@ -55,6 +56,29 @@ success and &false; on failure. + + + &reftitle.changelog; + + + + + &Version; + &Description; + + + + + 8.3.0 + + enable is now nullable. + + + + + + + &reftitle.seealso; From 871366cde87b1decfbe4ebfc562c3a0e7b0c8b66 Mon Sep 17 00:00:00 2001 From: Yoshinari Takaoka Date: Wed, 15 Nov 2023 03:21:59 +0900 Subject: [PATCH 2/3] fixed initializer to &null; --- reference/uodbc/functions/odbc-autocommit.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/uodbc/functions/odbc-autocommit.xml b/reference/uodbc/functions/odbc-autocommit.xml index 9576a01638da..7b9e518973a9 100644 --- a/reference/uodbc/functions/odbc-autocommit.xml +++ b/reference/uodbc/functions/odbc-autocommit.xml @@ -10,7 +10,7 @@ intboolodbc_autocommit resourceodbc - boolenablenull + boolenable&null; Toggles autocommit behaviour. From ebc9c7f91a17b284d9cac5fa3172fdb928cd4358 Mon Sep 17 00:00:00 2001 From: Gina Peter Banyard Date: Tue, 14 Nov 2023 23:43:34 +0000 Subject: [PATCH 3/3] Nit --- reference/uodbc/functions/odbc-autocommit.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reference/uodbc/functions/odbc-autocommit.xml b/reference/uodbc/functions/odbc-autocommit.xml index 7b9e518973a9..f1ef54e376f1 100644 --- a/reference/uodbc/functions/odbc-autocommit.xml +++ b/reference/uodbc/functions/odbc-autocommit.xml @@ -35,8 +35,9 @@ If enable is &true;, auto-commit is enabled, if - it is &false; auto-commit is disabled. If &null; is passed, this function - returns auto-commit status for odbc. + it is &false; auto-commit is disabled. + If &null; is passed, this function returns the auto-commit status for + odbc.