previous
|
start
|
next
Transactions
COMMIT makes the updates permanent
ROLLBACK command undoes all changes up to the last COMMIT
By default, the JDBC library commits all database updates
For transaction processing, turn off autocommit mode
Connection conn . . . ; conn.setAutoCommit(false); Statement stat = conn.getStatement();
previous
|
start
|
next