3

I am getting the following error sometimes when there is new OracleConnection using Oracle Managed Driver libraries in .net

I want to know what type of this exception is , i need to handle it in catch block.

    Message:Connection request timed out Stack Trace: at
 OracleInternal.ConnectionPool.PoolManager`3.CreateNewPR(Int32 reqCount, Boolean bForPoolPopulation, ConnectionString csWithDiffOrNewPwd, String instanceName) at OracleInternal.ConnectionPool.PoolManager`3.Get(ConnectionString csWithDiffOrNewPwd, Boolean bGetForApp, String affinityInstanceName, Boolean
 bForceMatch) at OracleInternal.ConnectionPool.OraclePoolManager.Get(ConnectionString
 csWithNewPassword, Boolean bGetForApp, String affinityInstanceName, Boolean bForceMatch) at OracleInternal.ConnectionPool.OracleConnectionDispenser`3.Get(ConnectionString cs, PM conPM, ConnectionString pmCS, SecureString securedPassword,
 SecureString securedProxyPassword) at Oracle.ManagedDataAccess.Client.OracleConnection.Open() at ClientService.ClientService.AuthenticateUser(String subno, String pin,
 String version
4
  • Can you catch OracleInternal.ConnectionPool.PoolManager? Commented Feb 10, 2015 at 12:21
  • Nope it does not highlight. Commented Feb 10, 2015 at 12:27
  • How about OracleException? Commented Feb 10, 2015 at 12:28
  • yes i can catch OracleException but problem is i need to know this particular type of exception like in the post i said its related to ConnectionPool Commented Feb 10, 2015 at 12:32

1 Answer 1

1

Your problem related with using of pooling as default attribute in connection string. This issue discussed in detail in this document: http://docs.oracle.com/cd/E51173_01/win.122/e17732.pdf in "Using connection pooling" chapter.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.