Ora-06413 only with asp.mvc 4
997484Mar 18 2013 — edited Mar 18 2013Hi, I have an issue with my OleDbConnection.
First I have 8.1.7 Client because i need it to connect to an Oracle 8 database.
Today I'm using this code to connect to an other database running on version 11.
OleDbConnection c = new OleDbConnection("Provider=msdaora; Data Source=**** user id=****; password=****;");
try
{
c.Open();
c.Close();
}
catch (Exception e)
{
throw;
}
This is working fine on a Console application although sending Ora-06413 on ASP.MVC 4
Thank you !