views:

931

answers:

3

I have a web app that has been written with the assumption that autocommit is turned on on the database, so I don't want to make any changes there. However all the documentation I can find only seems to talk about using init_connect on the database, i.e. a global setting for all client connections.

Is there a way to set autocommit=0 just when running mysql on a Linux command line (without having to type it in every time)?

A: 

Do you mean the mysql text console? Then:

START TRANSACTION; ... your queries. ... COMMIT;

Is what I recommend.

However if you want to avoid typing this all the time you need to make add the following to the [mysqld] section of your my.cnf file.

init_connect='set autocommit=0'

This would set autocommit to be off for every client though.

e4c5
That doesn't turn off autocommit, and I want something that I don't have to type even every session, let alone for every piece of DML.
Michael Hinds
Sorry I should have read your post more carefully. As far as I know, autocommit is not something that can pass through as a init connect parameter - that's because it's a global variable. As you know global variables can only be set by super users. Now the catch 22: super users are not allowed to use the init_connect setting relevent page of the manual is here: http://dev.mysql.com/doc/refman/5.0/en/server-system-variables.html (scroll down till you get to the --init-connect section)
e4c5
+1  A: 

You do this in 3 different ways.

1) Before you do an insert, always issue a BEGIN; statement. This will turn off your autocommits. You will need to do a COMMIT; once you want your data to be persisted in the database.

2) Use autocommit=0; everytime you instantiate a database connection

3) For a global setting, add a autocommit=0 variable in your my.cnf configuration file in MySQL.

nanda
+1  A: 

Perhaps the best way is to write a script that starts the mysql command line client and then automatically runs whatever sql you want before it hands over the control to you.

linux comes with an application called 'expect'. it interacts with the shell in such a way as to mimic your key strokes. it can be set to start mysql, wait for you to enter your password. run further commands such as SET autocommit = 0; then go into interactive mode so you can run any command you want.

for more on the command SET autocommit = 0; see.. http://dev.mysql.com/doc/refman/5.0/en/innodb-transaction-model.html

I use expect to log in to a command line utility in my case it starts ssh, connects to the remote server, starts the application enters my username and password then turns over control to me. saves me heaps of typing :)

http://linux.die.net/man/1/expect

DC

Expect script provided by Michael Hinds

spawn /usr/local/mysql/bin/mysql 
expect "mysql>" 
send "set autocommit=0;\r" 
expect "mysql>" interact

expect is pretty powerful and can make life a lot easier as in this case.

if you want to make the script run without calling expect use the shebang line

insert this as the first line in your script (hint: use which expect to find the location of your expect executable)

#! /usr/bin/expect

then change the permissions of your script with..

chmod 0744 myscript

then call the script

./myscript

DC

DeveloperChris
That's perfect, cheers! I already have MySQL configured with a default username, password etc. so I don't need to pass it those. Can't seem to format the code despite what meta says, so feel free to add it to the main response. My expect script is:spawn /usr/local/mysql/bin/mysql expect "mysql>" send "set autocommit=0;\r" expect "mysql>" interact
Michael Hinds
Thanks - if by "format the code" you mean in the comments, then no there is no formatting available. I'll add your code to the answer
DeveloperChris