What do you mean by database connection pooling?

devquora
devquora

Posted On: Feb 22, 2018

 

Connection pooling is storage of database connection in the cache. It is very useful for the reuse of connection in the future at the time of requirement of the database. It is also better for the executing commands as it increases its performance on a database.

    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..