Preloader image
DDD

데이터베이스

MySQL - autocommit 상태 확인 & 변경

작성자 관리자 (admin)
조회수 540
입력일 2019-11-07 23:56:54

명령어
> SELECT @@autocommit;

1 (true)
0 (false)

> SET autocommit = true;
> SET autocommit = false;

^