Transactions with JDBC

Transactions JDBC Transactions should have ACID properties. In a transaction, all the operations on the database should succeed; even one operation fails, all the operations in the transaction should be rolled back. This is the motto of Transactions JDBC. Think there is a transaction where a cheque is credited (amount added to my bank account) …

Transactions with JDBC Read More »