commettre une transaction SQL

BEGIN TRANSACTION NamedThis
-- insert, update, etc.
COMMIT TRANSACTION NamedThis
-- "ROLLBACK TRANSACTION NamedThis" will undo any changes by the transaction
Victorious Vole