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