InterviewSolution
| 1. |
Can I Set Up A Connection Pool With Multiple User Ids? The Single Id We Are Forced To Use Causes Problems When Debugging The Dbms. |
|
Answer» Since the Connection interface ( and the UNDERLYING DBMS ) REQUIRES a specific user and password, there's not much of a WAY around this in a POOL. While you could create a different Connection for each user, most of the rationale for a pool would then be gone. Debugging is only one of several issues that arise when USING pools. Since the Connection interface ( and the underlying DBMS ) requires a specific user and password, there's not much of a way around this in a pool. While you could create a different Connection for each user, most of the rationale for a pool would then be gone. Debugging is only one of several issues that arise when using pools. |
|