cless
cless

Reputation: 39

.Net Application cannot detect ODP.NET 2.111.6.20 in 64bit windows

We are currently deploying our .net winform application which depends on ODP.NET 2.111.6.20 via xcopy. Installing on 32 bit windows was fine, however, for some reason our applications cannot detect odp.net in a 64bit environment.

I would like to ask if there are special build configurations that i have to do in building my applications to solve this problem, or do i have to tweak a settings file or two to make it to work?

Upvotes: 0

Views: 527

Answers (1)

Alex Paven
Alex Paven

Reputation: 5549

I think ODP is compiled separately for 32 and 64 bits so aside from having different builds referencing the correct library I'm not sure what you could do. I forced my builds to 32 bits since supporting 64 wasn't a hard requirement; programs in 32 bits run just fine on 64-bit windows (of course you must be careful with registry access and all other things that differ between 32 and 64).

Upvotes: 2

Related Questions