autocommit¶
Syntax¶
AUTOCOMMIT { ON | OFF }
Description¶
Turns the connection's auto-commit mode on or off. JDBC specifies that the default auto-commit mode is ON
. Certain types of processing require that auto-commit mode be OFF
.
If auto-commit mode is changed from off to on when a transaction is outstanding, that work is committed when the current transaction commits, not at the time auto-commit is turned on. Use Commit or Rollback before turning on auto-commit when there is a transaction outstanding, so that all prior work is completed before the return to auto-commit mode.
Example¶
snappy> AUTOCOMMIT off;
snappy> INSERT INTO greetings values (DEFAULT, 'hello');
1 row inserted/updated/deleted
snappy> COMMIT;