Transactions

Commit

English

Overview

The operation that finalizes a transaction's changes.

Details

An operation that permanently applies a transaction's changes to the database, after which it can no longer be rolled back. Most RDBMSes default to autocommit mode, automatically committing each SQL statement on its own, so grouping multiple operations into one transaction requires explicitly switching modes with something like a BEGIN statement.

More Database terms