BEGIN TRANSACTION;
-- This statement starts a new transaction.
COMMIT;
-- This statement saves all changes made during the current transaction.
ROLLBACK;
-- This statement undoes all changes made during the current transaction.