What do you mean by batch processing in JDBC?

Asked 7 years ago
Viewed 441 times

0

What do you mean by batch processing in JDBC?


1 Answer


0

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.
answered 7 years ago by Hemant Patel

Your Answer