Do I have to call connection.setAutoCommit(false) in order to group a few DML statements in one transaction? I'm a bit confused because jdbc doc says that a new connection is created in auto-commit mode. At the same time, Oracle doesn't have auto-commit transactions, a DML statement begins a new transaction if it doesn't exist. So, in my understanding, connection.setAutoCommit(false) is redundant (assuming I don't consider switching to a different RDMS).
Could anyone clarify this?
Thanks.