G
Guest
Hello
I've got a problem about Oracle connection. If I stop the database (with sqlplus) and I try an Oracle connection with .NET without restarting the .NET application, the status is still "Open" despite the database is closed. I need to restart the .NET application to have a connection refused (which is the true behaviour)
Here is the VB.NET code
Imports System.Data.OracleClien
....
strConnString = "Data Source=test;User ID=test;password=test
m_Connection = New OracleConnection(strConnString
m_Connection.Open(
...
m_Connection.Close(
I hope someone can help me with this problem
Best regards. Cedri
I've got a problem about Oracle connection. If I stop the database (with sqlplus) and I try an Oracle connection with .NET without restarting the .NET application, the status is still "Open" despite the database is closed. I need to restart the .NET application to have a connection refused (which is the true behaviour)
Here is the VB.NET code
Imports System.Data.OracleClien
....
strConnString = "Data Source=test;User ID=test;password=test
m_Connection = New OracleConnection(strConnString
m_Connection.Open(
...
m_Connection.Close(
I hope someone can help me with this problem
Best regards. Cedri