Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have 4 stored procedures which we are using to insert the entries in database, These 4 are interdependent, If any of this fails Whole operation has to be rolled back, only if everything goes well I want to commit the transaction. How do I achieve that.

Thanks, Rohit.

share|improve this question

1 Answer

up vote 0 down vote accepted

You need to use JDBC's transaction support, which is described in the JDBC Tutorial here.

Pseudo-code:

Connection conn = ...
conn.setAutoCommit(false);
try {
   doAction1(connection);
   doAction2(connection);
   doAction3(connection);
   doAction4(connection);

   connection.commit();
} catch (Exception ex) {
   connection.rollback();
}

Plus all the usual closing of connections, statements, etc.

The link describes the specifics.

share|improve this answer
Thanks for the answer, Implemented in same way.Really appreciate your help. Thanks, Rohit. – Rohit Desai Dec 23 '09 at 12:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.