What do you mean by JDBC Batch Processing and what are the advantages of using JDBC Batch Processing?

devquora
devquora

Posted On: Feb 22, 2018

 

JDBC branching is used to send a bulk of SQL statement in just one call to the database. It enhances the performance as you forward A great number of a similar statement in a batch in a call and reducing the connection overhead. It can be done by the options such as Statement or PreparedStatement addBatch() and executeBatch() methods.

Advantages: -

  • It is faster.
  • JDBC API motivates batch processing.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    JDBC Interview Questions

    What is the full form of JDBC and what is its purpose?

    JDBC stands for Java Database connectivity which is an application that helps in connection for the programming of Java language...

    JDBC Interview Questions

    What do you understand by JDBC driver and explain its types?

    JDBC drivers are software that enables the Java application to connect with the database..