I am dealing with Sql Server and Oracle through Qt, when using QSqlDatabase::transaction()
on a database connection. When another user/connection has a transaction open on the same database does the transaction()
call block until the other transaction is finished or fail ?
I m trying to export some tables from SQL Server 2005 and then create those tables and populate them in Oracle. I have about 10 tables, varying from 4 columns up to 25. I m not using any constraints/...