PDA

View Full Version : Database Connection Pooling



sweetashlee
11 Sep 2009, 04:30 AM
Connection pooling is a technique used to avoid the overhead making of new database connection every time. An application or server object requires access to a database. This technique of “pooling” connections is based on the fact that most applications only need a thread to have access JDBC connection when they are actively processing a transaction, which usually take only milliseconds to complete. While not processing a transaction, the connection would otherwise sit idle. Instead, connection pooling allows the idle connection to be used by some other thread to-do his useful work.

Read More (http://www.redalkemi.com/blog/database-connection-pooling/)

is_numeric
15 Sep 2009, 10:30 AM
Why do you post content which you have had no dealings in?