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

explain about special characters?

0 Answers  


Explain about the drive manager class working?

0 Answers  


What is database deadlock ? How can we avoid them?

0 Answers  


i am user who logined the application..after that another valid user will also logind..so that is it neccessary to create jdbc connection for each and every user...plz explain it with proper answer...plz help me

5 Answers   IBM,


Can we make a database connection from HTML ?

6 Answers   Aptech, BOB Technologies, Cap Gemini, Wipro,






Hi friends, In JDBC 4 drivers are there among this which driver is best and why it is best.Which driver is most commonly used in web applications.

6 Answers  


What is createstatement method in java?

0 Answers  


What is JDBC RowSet? What are different types of RowSet?

0 Answers  


What are the sailent features of JDBC 2.0?

7 Answers  


Which is best database for java?

0 Answers  


What are types of jdbc drivers?

0 Answers  


What is jdbc odbc in java?

0 Answers  


Categories