JDBC Java Interview Questions – Set 03
What does setAutoCommit(false) do A JDBC connection is created in auto-commit mode by default. This means that each individual SQL statement is treated as a transaction and will be automatically committed as soon as it is executed. If you require two or more statements to be grouped into a transaction then you need to disable … Read more