using Oracle.DataAccess.Client;
private void Page_Load(object sender, System.EventArgs e)
{
// Put user code to initialize the page here
OracleConnection oracleConn = new OracleConnection();
oracleConn.ConnectionString = "User Id=xxxxx;Password=xxxxx;Data Source=xxxxx;";
oracleConn.Open();
}
I'm using to this code in a c# page to try to connect to a oracle 9.2 database
and i'm getting the error that 'Oracle.DataAccess' could not be loaded.
I have done all the things with permissions et cetera, any ideas. the Oracle.DataAccess.DLL. file is in the oracle bin
private void Page_Load(object sender, System.EventArgs e)
{
// Put user code to initialize the page here
OracleConnection oracleConn = new OracleConnection();
oracleConn.ConnectionString = "User Id=xxxxx;Password=xxxxx;Data Source=xxxxx;";
oracleConn.Open();
}
I'm using to this code in a c# page to try to connect to a oracle 9.2 database
and i'm getting the error that 'Oracle.DataAccess' could not be loaded.
I have done all the things with permissions et cetera, any ideas. the Oracle.DataAccess.DLL. file is in the oracle bin