What do you mean by batch processing in JDBC?
Asked
7 years ago
Viewed
441 times
What do you mean by batch processing in JDBC?
1 Answer
Batch processing allows you to group related SQL statements into a batch and submit them with one call to the database. When you use batch processing technique in JDBC, you can execute multiple queries which makes the performance faster.