How to disable connection pool?
Connection string that my app is using to connect to DB is the following: private const string oradb = "Data Source=(DESCRIPTION=(ADDRESS_LIST=" + "(ADDRESS=(PROTOCOL=TCP)(HOST=host.name)(PORT=1521)))" + "(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=service.name)));" + "User Id=myusername;Password=mypass;"; In all DB access points of my app I am using the following pattern: OracleConnection conn = new OracleConnection(oradb); try { Console.WriteLine("Opening DB Connection..."); conn.Open(); string queryString = string.Format(@"SELECT ..."); using (OracleCommand command = new OracleCommand