[jrf-user] JRFWriteTransaction
Brought to you by:
joncrlsn
|
From: Jay <je...@vm...> - 2002-11-06 14:43:08
|
I will eventually check the JDBC specification to see if it is appropriate for a driver to throw an exception for calling commit on an auto-commit connection. Please change the following at line 132 in JRFWriteTransaction.java: Replace: if (!c.isConnectionOpen()) with if (!c.isConnectionOpen() || !c.getAutoCommit()) This will stop commit() from being called. If this fix works, let me know and I will check in the change. Thank you, J Evans |