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
This commit is contained in:
Alessandro Bonazzi 2024-09-19 00:15:50 +02:00
parent ca9b5de4a7
commit 639b7facaa

View File

@ -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;
}