diff --git a/packages/fcl-db/tests/sqldbtoolsunit.pas b/packages/fcl-db/tests/sqldbtoolsunit.pas index 1238159290..c91e3d8da3 100644 --- a/packages/fcl-db/tests/sqldbtoolsunit.pas +++ b/packages/fcl-db/tests/sqldbtoolsunit.pas @@ -152,11 +152,7 @@ begin if SQLConnType = SQLITE3 then Fconnection := TSQLite3Connection.Create(nil); if SQLConnType = POSTGRESQL then Fconnection := TPQConnection.Create(nil); if SQLConnType = INTERBASE then Fconnection := TIBConnection.Create(nil); - if SQLConnType = ODBC then - begin - Fconnection := TODBCConnection.Create(nil); - Fconnection.Params.Append('AutoCommit=false'); - end; + if SQLConnType = ODBC then Fconnection := TODBCConnection.Create(nil); {$IFNDEF Win64} if SQLConnType = ORACLE then Fconnection := TOracleConnection.Create(nil); {$ENDIF Win64}