I have a program in C# that use ODP.NET dlls:
oci.dll, ociw32.dll, Oracle.DataAccess.dll,
orannzsbb11.dll, oraocci11.dll, oraociicus11.dll,
OraOps11w.dll.
<
You can set the TNS_ADMIN
environment variable programmatically. See this page for a step by step. That is if you wanted to change to a specific TNS_NAMES.ORA
file. The Oracle Client must still be installed on the client machine.
From ConnectionStrings - without using TNS:
Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=MyHost)(PORT=MyPort))(CONNECT_DATA=(SERVICE_NAME=MyOracleSID)));User Id=myUsername;Password=myPassword;
Please see this question which could aid you in finding the current location of the client's TNS_NAMES.ORA
file - which you could open and modify if you wish (add your own connection if it doesn't exist)