What do you mean by batch processing in JDBC?

Asked 8 years ago 639 views

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.

Write Your Answer