How to bind oracle data access dll?

I am using Oracle.DataAccess.dll for Oracle version 10.2. with .NET. I give the compiled application to the client, and it does not work for him, because I assume that ODP.NET is not on his machine.

I asked him to download and install it from Oracle, but this is not an option, since he must go through the approval process to do this.

Is there an easy way to combine only the DLLs that are needed to make it work?

+4
source share
1 answer

ODP.NET is a thin .NET wrapper on top of Java classes, so concatenation is a more complex process. In addition, federation can run counter to Oracle EULA, which can cause you problems if you do this with multiple clients. And, this is a lot of work for just one.

You can configure the bootstrap program to automatically download from oracle and install, but this may not bypass its company policy.

0
source

All Articles