Does Java Connection.close rollback into a finally block?.
I know .Net SqlConnection.close does it.
With this I could make try/finally blocks without catch..
According to the javadoc, you should try to either commit or roll back before calling the close method. The results otherwise are implementation-defined.