AutoCommit MySQL

SET AUTOCOMMIT=true;
-- or
SET AUTOCOMMIT=1;
-- get current autocommit status:
SELECT @@autocommit;
VasteMonde