Apply suggestion from @Copilot

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Julien Le Coupanec
2026-04-12 19:25:52 +02:00
committed by GitHub
parent a75ee3956e
commit 6326628901

View File

@@ -111,3 +111,4 @@ START TRANSACTION; # Begin a new tra
COMMIT; # Save all changes made during the transaction COMMIT; # Save all changes made during the transaction
ROLLBACK; # Undo all changes if an error occurs before commit ROLLBACK; # Undo all changes if an error occurs before commit
SET AUTOCOMMIT = 0; # Disable automatic commits for the current session SET AUTOCOMMIT = 0; # Disable automatic commits for the current session
SET AUTOCOMMIT = 1; # Re-enable automatic commits after finishing manual transactions