From 639b7facaa6e395b3dfcb31d59ae1544291e7fe9 Mon Sep 17 00:00:00 2001 From: Alessandro Bonazzi Date: Thu, 19 Sep 2024 00:15:50 +0200 Subject: [PATCH] Patch level :12.00 1354 Files correlati : ve0.exe ve1.exe ve5.exe ve6.exe cg0.exe ca0.exe Commento: Corretto aggiornamento dello stato nella stampa documenti Riabilitato odbc_recordset commit --- src/include/odbcrset.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/include/odbcrset.cpp b/src/include/odbcrset.cpp index 7e8727f3e..868d55a2d 100755 --- a/src/include/odbcrset.cpp +++ b/src/include/odbcrset.cpp @@ -372,15 +372,13 @@ long TODBC_recordset::exec(const char* sql) long TODBC_recordset::begin() { - if (driver() == ODBC_mssql) - return exec("BEGIN;"); + return exec("BEGIN;"); return 0L; } long TODBC_recordset::commit() { - if (driver() == ODBC_mssql) - return exec("COMMIT;"); + return exec("COMMIT;"); return 0L; }