I'm using the NuGet Package Oracle.ManagedDataAccess
. When calling OracleConnection.Open();
I get the error named in the title. My Connection string looks like Data Source=RAEDB;User ID=*****;Password=*****;
. In the tnsnames.ora
this Data Source is configured like
RAEDB =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = OraDB_IHDB)(PORT = 1521))
(LOAD_BALANCE = yes)
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = ihdb)
)
)
We don't use the sqlnet.ora
, so the tnsnames.ora
is used by default.
Weirdly this only happens in the NuGet Package version 12.2.1100
, but not in 12.1.24160419
. Might it be that version of the Package is faulty or is it some configuration I missed?