Results 1 to 2 of 2

Thread: Database Connection Pooling

  1. #1
    Join Date
    Aug 2009
    Posts
    9

    Database Connection Pooling

    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

  2. #2
    Join Date
    Apr 2009
    Location
    The toon
    Posts
    1,225
    Why do you post content which you have had no dealings in?

Similar Threads

  1. ASP - unable to locate database
    By fouraces in forum Client & Server Side Scripting (PHP, ASP, JavaScript)
    Replies: 0
    Last Post: 05 Feb 2009, 05:42 PM
  2. Database connection
    By Mastakay in forum General Questions
    Replies: 1
    Last Post: 24 May 2007, 07:58 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •