I'd like to connect to a MySQL server with Oracle SQL Developer, but with autocommit disabled. By default, all MySQL connections have autocommit enabled, which is rather odd.
The global setting in SQL Developer is unchecked, and
set autocommit=0;
results in the error
set autocommit script command forced off, as connection level autocommit is on.
In the connection's settings are no other options besides hostname, port and a drop down box for database selection.
I'm using SQL Developer 3.2.10 with latest JDBC connector, 5.1.
In Oracle SQL Developer 4 the setting has moved:
Tools > Preferences > Database > Advanced > Autocommit
Default is off.
Alternative:
set autocommit off;