Answered Questions

  • What is Connection Pooling

    Chandan

    • Jun 20th, 2012

    Connection pooling is a technique using which we can get the precreated connection object from the connection pool.After using that connection object, the connection object is released to the pool fo...

    Suresh Yerra

    • Dec 11th, 2011

    Usually Acquiring the connection is time consumption task. In order to avoid that situations, we are reusing already created connection objects. This requirement doesnot support DriverManager interface, we have interface DataSource in javax.sql package.