G S
Answered On : Nov 3rd, 2011
By using Transactions.
Every JDBC Driver will be able to perform Transactions. But its not recommended.
If we want to use out own Transactions we will set
con.setAutoCommit(false); and after executing the transactions we will execute con.commit();
Login to rate this answer.
sekhar
Answered On : Mar 15th, 2012
To update data in multiple table using single click ,we can go with triggers in database.we have different types of triggers like after insert,after update,after delete.Better using triggers.
Login to rate this answer.