System.Data.OracleClient requires Oracle client software version 8.1.7 or greater
Posted
by
sachin kulkarni
on Stack Overflow
See other posts from Stack Overflow
or by sachin kulkarni
Published on 2011-10-20T06:57:37Z
Indexed on
2012/09/26
21:37 UTC
Read the original article
Hit count: 344
I have installed Oracle client version 10g on my PC(Registry ORACLE_BASE-D:\oracle\product\10.2.0). I have added below references. System.Data.OracleClient.
I am getting above mentioned error. Below is the Code Snippet .
public static OracleConnection getConnection()
{
try
{
dataSource = new SqlDataSource();
dataSource.ConnectionString = System.Configuration.ConfigurationManager.AppSettings.Get("conn");
OracleConnection connection = new OracleConnection();
if (dataSource == null)
{
// Error during initialization of InitialContext or Datasource
throw new Exception("###### Fatal Exception ###### - DataSource is not initialized.Pls check the stdout/logs.");
}
else
{
connection.ConnectionString = dataSource.ConnectionString;
connection.Open();
}
return connection;
}catch (Exception ex)
{
throw ex;
}
}
Please let me know what are the areas of Concern and where Iam missing.I am new for the combination of Oracle and Asp.Net.
© Stack Overflow or respective owner