Top "Autocommit" questions

How do I turn off autocommit for a MySQL client?

I have a web app that has been written with the assumption that autocommit is turned on on the database, …

mysql client autocommit
Why is "hibernate.connection.autocommit = true" not recommended in Hibernate?

In Hibernate API, there is a property hibernate.connection.autocommit which can be set to true. But in the API, …

java database hibernate transactions autocommit
Disable autocommit in SQL Developer when using MySQL

I'd like to connect to a MySQL server with Oracle SQL Developer, but with autocommit disabled. By default, all MySQL …

mysql oracle-sqldeveloper autocommit
Is there any way to rollback after commit in MySQL?

I did a big mistake that I updated a table without 'where' clause in MySQL :'( It is auto-committed. Is …

mysql sql-update rollback autocommit
what happens on connection.setAutoCommit = false

what happens if I do connection.setAutoCommit(false); does it creates a new transaction at database side?

java jdbc connection autocommit
Large Objects may not be used in auto-commit mode

I have a Spring application which uses Hibernate on a PostgreSQL database. I'm trying to store files in a table …

java hibernate postgresql jpa autocommit
JDBC connection default autoCommit behavior

I'm working with JDBC to connect to Oracle. I tested connection.setAutoCommit(false) vs connection.setAutoCommit(true) and the results …

oracle jdbc autocommit
How to check if autocommit is on or not postgres' psql

I am using postgres 9.5. How can I check if auto commit is on or off? I tried SHOW AUTOCOMMIT where …

postgresql autocommit
SQL PreparedStatement & autocommit

If I create a preparedstatement using a JDBC connection which has "autocommit off", do I need to call commit() to …

jdbc prepared-statement autocommit