Connection string that my app is using to connect to DB is the following:
private const string oradb = \"Data Source=(DESCRIPTION=(ADDRESS_LIST=\"
You could add Pooling=False
in the connection string, but this means a new connection is created each time.
+ "User Id=myusername;Password=mypass;Pooling=False;";
Take a look at this article, it might help with your issue. Also, take a look at this website page, specifically the Using Connection Pooling section