I am starting a test connection, I expect to see a transparent session browser, but at the end of the program I see more than 6 sessions in the session browser
This is the code:
private void testConnection() { string connectionString = "data source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=1111)(PORT=1699))(CONNECT_DATA =(SERVER = DEDICATED)(SERVICE_NAME = abcd)));Min Pool Size=10; Connection Lifetime=120;"; OracleConnection oraConn = new OracleConnection(connectionString); try { oraConn.Open(); } catch (Exception e) { } finally { oraConn.Dispose(); oraConn.Close(); } }
plz help me !!
source share