
|
If you were logged in you would be able to see more operations.
|
|
|
|
Environment:
|
JBoss 4.0.4, MySQL Connect/J 5.0.4, JTA
|
|
|
Compass try to manage connection auto-commit mode on a datasource obtained from JNDI in managed mode.
Even if the autocommit set to false, this action injures jboss datasource management code. So consequent commit on the JTA transaction fails.
|
|
Description
|
Compass try to manage connection auto-commit mode on a datasource obtained from JNDI in managed mode.
Even if the autocommit set to false, this action injures jboss datasource management code. So consequent commit on the JTA transaction fails. |
Show » |
|
if (conn.getAutoCommit() != autoCommit) { conn.setAutoCommit(autoCommit); }
So, the autoCommit is set only oif it differs from the one the connection is set with. Does JBoss acts in some peculiar way that breaks it?