autocommit mysql

Solutions on MaxInterview for autocommit mysql by the best coders in the world

showing results for - "autocommit mysql"
Gaëlle
20 Aug 2019
1SET AUTOCOMMIT=true;
2-- or
3SET AUTOCOMMIT=1;
4-- get current autocommit status:
5SELECT @@autocommit;