Reputation: 31
I am trying to connect from .net windows application to oracle database. Do we have to install oracle client in every system where the application is running to connect to the remote oracle database..
Thanks in advance
Upvotes: 0
Views: 1573
Reputation: 13562
Check answers to question: Connection C# to Oracle for list of possible solutions for interfacing to Oracle.
Upvotes: 0
Reputation: 1028
You will need to have either the full Oracle database client installed (or the instant client) on each workstation in order to communicate with an Oracle database server.
This is completely separate to the "OracleClient" ADO.net classes.
Upvotes: 0
Reputation: 3985
You don't need to "install" it, but you do have to provide the appropriate DLLs with your assembly.
Upvotes: 0
Reputation: 61589
You need to go and grab the Oracle Data Provider which will enable you to query Oracle databases using standard ADO.NET access patterns.
Upvotes: 1