| Author |
Connection from DataSource
|
Madan Kulkarni
Greenhorn
Joined: Sep 23, 2002
Posts: 5
|
|
Hi, I have a question regarding the JDBC Connection object from DataSource. I have created the connection pooling in WAS 4.06 Application Server thr' administrative consol. In my ConnectionWraper class, I am searching the data source object thr' JNDI search and then using datasource.getConnection() method to get the JDBC Connection object to perform Database SQLs. When I complete the SQL execution, I am closing the resultset, statement and connection objects in respective methods. Now, my question is, when I am closing the connection object with connection.close() method, will this connection object return to the connection pool or not?
|
Java Programmer
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26201
|
|
Madan, Yes, the connection is then returned to the pool.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
 |
|
|
subject: Connection from DataSource
|
|
|