Hello,
There is the issue with setting 'autocommit' to already released connection, when DELAYED_ACQUISITION_AND_RELEASE_AFTER_TRANSACTION is used.
See method in *LogicalConnectionManagedImpl * : * {code} @Override protected void afterCompletion() { afterTransaction();
resetConnection( initiallyAutoCommit ); initiallyAutoCommit = false; } {code}
(x) Connection is released in afterTransaction() and then resetConnection() is called. |
|