I use Oracle.DataAccess.dll for Oracle Version 10.2. with .NET. I give the compiled application to the customer and it doesn't work for him because I am guessing ODP.NET is not on his machine.

I asked him to download and install it from Oracle, but that is not an option as he has to go through some approval process to get that done.

Is there an easy way to bundle just the dlls that are needed to get it to work?

link|improve this question

78% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Here's a good thread on the Oracle forums that explains how to do this.

link|improve this answer
That looks like the ODP.NET for Oracle 11g, is that right? – Haoest Jul 20 '11 at 0:27
That particular thread is for 11, yeah. But it's typically a fairly painless upgrade for your app assuming you can't do the same thing with ODP.net 10. – Tridus Jul 20 '11 at 0:42
I had the impression (probably false impression) that ODP.NET 11 is only compatible with Oracle Database 11g. Is this right? – Haoest Jul 20 '11 at 1:02
That's not true. Some of the new features may require Oracle 11, but anything that worked in ODP 10 against Oracle 10 server will work in ODP 11 against Oracle 10 server. You should test first of course, but I've used 11 client against 9 and 10 servers successfully. – Tridus Jul 20 '11 at 1:20
will try it then, thank you – Haoest Jul 20 '11 at 2:42
feedback

ODP.NET is a thin .NET wrapper over Java classes, so bundling is a more difficult process. In addition, bundling may go against the Oracle EULAs, which could get you in trouble if you do it with quite a few customers. And, it is lot of work for just one.

You could set up a bootstrap program to have it auto load from oracle and install, but this may not get around his company's policy.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.