Hi,
i need to set the Transaction Isolation Level. Is this possible to access this field on the connection object?
thanks
i need to set the Transaction Isolation Level. Is this possible to access this field on the connection object?
Progress Customer Community
knowledgebase.progress.com
Java:
sqlConnSession = (Connection) testLwPool.getConn();
sqlConnSession.setTransactionIsolation(Connection.TRANSACTION_READ_COMMITTED);
B4X:
...
Try
SQL1 = Pool.GetConnection
Catch
LOG(LastException.Message)
End Try
...
thanks