Hi Guys,
As the title says "Could not load file or assembly 'Oracle.DataAccess, Version=4.112.4.0". The program crashes when I attempt to run the following code.
OracleConnection Con = new OracleConnection(ConfigurationManager.ConnectionStrings["ConnectionString1"].ToString());
OracleCommand sqlCmd = new OracleCommand();
//OracleDataReader dr;
sqlCmd.Connection = Con;
Con.Open();
sqlCmd.CommandText = "INSERT INTO FGID values (0, 0, 0, ' ', sysdate)";
sqlCmd.ExecuteNonQuery();
sqlCmd.Clone();
MessageBox.Show("Record Inserted!");
Any help would be appreciated.