This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes JDBC and the fly likes using connection pooling for a standlone java application Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "using connection pooling for a standlone java application" Watch "using connection pooling for a standlone java application" New topic
Author

using connection pooling for a standlone java application

Giriraj Bhojak
Ranch Hand

Joined: Apr 03, 2008
Posts: 67
Hi,

Is it possible to use connection pooling for DB2ConnectionPoolDataSource outside of a server?
I am trying to use DB2ConnectionPoolDataSource in IBM universal driver(type 4) through a standalone application.
I am not sure whether i can use it in an a standalone app or i need to have an application server to manage pooling.

Regards,
Giriraj.
Jan Cumps
Bartender

Joined: Dec 20, 2006
Posts: 2343

You can use it standalone.


OCUP UML fundamental
ITIL foundation
Giriraj Bhojak
Ranch Hand

Joined: Apr 03, 2008
Posts: 67
Thanks a lot Jan,

In the meantime I also looked at Jakarta Common's DBCP.
I wonder whether it would be better to use the pooling mechanism of DBCP or to use DB2ConnectionPoolDataSource.
Any thoughts on this?

Regards,
Giriraj.

Jan Cumps
Bartender

Joined: Dec 20, 2006
Posts: 2343

I have no real preference. I use the commons implementation, because it works with drivers that do not support pooling.

What I would not do, is rely on DB2 (or Oracle, or ...) implementation. I would not worry to use it's built in pooling capabilities, but would take care that my code does not know (or know as little as possible) about it.
Giriraj Bhojak
Ranch Hand

Joined: Apr 03, 2008
Posts: 67
that's what i thought too...
it would be better to opt for a stable tool like dbcp to handle it for my application.
Thanks a lot for replying.

Regards,
Giriraj.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: using connection pooling for a standlone java application
 
Similar Threads
why should i use connection pooling ?
Java Database connection
JDBC Connection Pooling Framework
JDBC Connection
Connection Pooling- For Stand Alone Application