Tenho algumas dúvidas sobre o assunto, uma delas é como proceder, em que local colocar o commit rollback e se é só esse dois comandos . coloquei um exemplo abaixo se algem puder me ajudar e me informar onde e o que colocar
Commit, grava definitivamente os dados(qualquer alteração que você fez). Rollback, descarta todas as informções.
segue…
commit
public void commit()
throws SQLException
Makes all changes made since the previous commit/rollback permanent and releases any database locks currently held by the Connection. This method should be used only when auto-commit mode has been disabled.
Throws:
SQLException - if a database access error occurs
See Also:
setAutoCommit(boolean)
rollback
public void rollback()
throws SQLException
Drops all changes made since the previous commit/rollback and releases any database locks currently held by this Connection. This method should be used only when auto- commit has been disabled.
Throws:
SQLException - if a database access error occurs
See Also:
setAutoCommit(boolean)