| Author |
Database connectivity taking too much time
|
Tapas Chand
Greenhorn
Joined: Dec 29, 2009
Posts: 12
|
|
I am using jdk 1.5, oracle 9i, IBM AIX 5.3, classes12.jar
my code is like this
connection is getting established after almost 5 mins.
but when i am connection through sqlplus from commandline, connection is getting established instantly.
please help...
|
 |
Farakh khan
Ranch Hand
Joined: Mar 22, 2008
Posts: 672
|
|
Hi,
Try this
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26173
|
|
|
Are you closing the connection in a finally block when done with it? Maybe there is a resource leak? Also, why are you checking if connection is null? If you are trying to reuse the connection try using an open source connection pooling library to do so more effectively. (And a datasource rather than driver manager)
|
[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: Database connectivity taking too much time
|
|
|