
How do you handle your own transaction ?

Hi friends,
Connection Object has a method called setAutocommit(Boolean istrue) - Default is true. Set the Parameter to false, and begin your transaction Example:
Connection con = getConnection();
con.setAutocommit(false);
//other code
con.commit();
con.close();
Thanks.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
