Java Database Connectivity (JDBC): Batch Executions & Transactions with JDBC

placeholder

In scenarios where an application has to issue several updates performing them in batches greatly benefits performance. A set of updates can then be wrapped in an interaction that either succeeds or fails altogether with the help of transactions in relational databases. Use this course to explore the implementation of advanced database operations using Java Database Connectivity (JDBC) specifically batch executions and transactions. Discover how executions of multiple similar queries can be optimized by aggregating them together in a batch and then executing them together and learn to set up queries to execute as transactions. You will also examine concepts such as rollbacks commits and savepoints and how these can be implemented using JDBC. You will be able to implement batch executions and transactions in a Java program using JDBC.