Initially I was using oraoledb.oracle provider in order to connect to Oracle database and it was easy to build a connection string:
Provider=OraOLEDB.Oracle;User Id=myId;Password=myPassword;Data Source=data.customer.com
and everything works as it expected, but currently I switched to ODP.Net in order to get rid of installing oracle client and I get an error ORA-12154: TNS:could not resolve the connect identifier specified
with the following connection string:
Data Source=data.customer.com;User Id=myId;Password=myPassword
So could someone tell me, where I made a mistake?