InterviewSolution
| 1. |
Define Connecting Pool? |
|
Answer» The connecting pool is basically the cache of various connections of the DATABASE and is maintained in such a way that can be used again the near future. Such requests for database caching are very FREQUENT and common in WEBSPHERE. However, when all the connections get occupied then a WHOLE new connection is made and gets automatically added to the pool. The connecting pool is basically the cache of various connections of the database and is maintained in such a way that can be used again the near future. Such requests for database caching are very frequent and common in WebSphere. However, when all the connections get occupied then a whole new connection is made and gets automatically added to the pool. |
|