2
2
======================
4
START TRANSACTION [WITH CONSISTENT SNAPSHOT]
4
How do you begin a transaction in Drizzle? First of all, SET AUTOMCOMMIT must be set to zero. A transaction can then run until either the connection to the database is dropped, or a rollback or a commit command is sent. ::
6
Will begin a transaction. SET AUTOMCOMMIT must be set to zero in order for
7
this to work. The transaction is then run until either the connection to the
8
database is dropped, or a rollback or a commit command is sent.
6
START TRANSACTION [WITH CONSISTENT SNAPSHOT]