I am using Visual studio 2019 and the .Net framework 4.5, I am trying to read an old database made with Oracle 9i but it does not work. I used two libraries
- Oracle.ManagedDataAccess:
I receive an error which says "ORA-01017: invalid username / password; logon denied" indeed I tried all the solutions already announced: Desable Fips, Install ODAC but it does not work.
- Oracle.DataAccess.dll :
I receive an error message that says "this provider is not longer supported"
Below the used code:
oracleConnection = new OracleConnection();
try
{
oracleConnection = new OracleConnection(connectionString);
oracleConnection .Open();
}
catch (Exception ex)
{
}
Thanks for your help