Skip to content

Latest commit

 

History

History
10 lines (4 loc) · 356 Bytes

transaction-implicit-explicit.md

File metadata and controls

10 lines (4 loc) · 356 Bytes

Transactions: Implicit vs. Explicit

Definitions of Implicit and Explicit Transactions

An implicit transaction is a single SQL statement transaction that doesn't use BEGIN / COMMIT block and is committed automatically.

An explicit transaction is using a BEGIN / COMMIT block and may contain one or multiple SQL statements.