InterviewSolution
Saved Bookmarks
| 1. |
Explain What Is A Connecting Pool? |
|
Answer» Connecting POOL is a cache of DATABASE CONNECTIONS maintained so that CONNECTION can be re-used when future requests to the database are required. If all the connections are occupied, a NEW connection is created and is added to the pool. Connecting pool is a cache of database connections maintained so that connection can be re-used when future requests to the database are required. If all the connections are occupied, a new connection is created and is added to the pool. |
|