wa is connection pooling? how do u create connection
pooling?wat is use connection pooling?



wa is connection pooling? how do u create connection pooling?wat is use connection pooling?..

Answer / rikin patel

What is connection pooling?
=>
With servlets, opening a database connection is a major
bottleneck because we are creating and tearing down a new
connection for every page request and the time taken to
create connection will be more. Creating a connection pool
is an ideal approach for a complicated servlet. With a
connection pool, we can duplicate only the resources we
need to duplicate rather than the entire servlet. A
connection pool can also intelligently manage the size of
the pool and make sure each connection remains valid. A
number of connection pool packages are currently available.
Some like DbConnectionBroker are freely available from Java
Exchange Works by creating an object that dispenses
connections and connection Ids on request. The
ConnectionPool class maintains a Hastable, using Connection
objects as keys and Boolean values as stored values. The
Boolean value indicates whether a connection is in use or
not. A program calls getConnection() method of the
ConnectionPool for getting Connection object it can use; it
calls returnConnection() to give the connection back to the
pool.

Is This Answer Correct ?    5 Yes 3 No

Post New Answer

More JDBC Interview Questions

How to insert an image or raw data into database?

0 Answers  


How can you retrieve data from the resultset using jdbc?

0 Answers  


Does sql allow null values ? Can we use it within where clause ?

0 Answers  


How do I load a database driver with JDBC 4.0 / Java 6?

0 Answers  


Differentiate between type_scroll_insensitive and type_scroll_sensitive.

0 Answers  


What is a rollback in jdbc?

0 Answers  


What are the methods which can verify the cursor particular position?

0 Answers  


can we create a own jdbc driver? how can we create?

1 Answers   HCL,


What is jdbc odbc in java?

0 Answers  


How do I insert/update records with some of the columns having NULL value?

0 Answers  


Explain the various types of locking system in jdbc?

0 Answers  


What causes the "No suitable driver" error?

0 Answers  


Categories