DriverManager.getConnection(databaseUrl + databaseName + "?user=" + databaseUser + "&password=" + databasePassword + "&isolation=" + java.sql.Connection.TRANSACTION_READ_COMMITTED);
If I have an transanction T1 that insert a row in a TABLEX (T1 during about 30 seconds to finish the transaction by calculations and another movements), immediately after beginning T1 can I do a transaction T2 that do a select of the TABLEX?
What is the behavior with this isolation level that I use?
Does Transaction T2 has to wait that transaction T1 commit or rollback?
thanks
-- MaxDB Discussion Mailing List For list archives: http://lists.mysql.com/maxdb To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]
