Oracle ODP.NET version agnostic alternative

前端 未结 2 1396
南笙
南笙 2020-12-18 11:35

I am implementing an x64 application, connecting to Oracle.

What driver should I use, to make sure that it doesn\'t matter what client version the user has installed

相关标签:
2条回答
  • 2020-12-18 12:09

    Oh the 'joys' of Oracle... Ok basically, I never bothered with x64 versions, I just compiled my programs for 32 bits exclusively, so if that's a hard requirement not everything may apply for you.

    But how I got version agnostic was to simply not use any client-installed drivers; instead I deployed in my application directory both the libraries for Oracle Instant Client, and the ODP binaries; the ODP will use OCI (instant client) files if they are accessible. It was the easiest way out and I'm glad I solved it that easily, although the information for this wasn't exactly easily reachable.

    With the current versions (at least they were current when I last built the application), 11g, the combination of ODP and OCI ensured compatibility with versions 9-11.

    Now, granted, OCI is pretty big (the english-only version is smaller at 'only' 35-ish MB if memory serves), but I had to live with it (deployment wasn't a big problem for me). Besides I had another dependency on a library which was already 50-ish MB - most of it in XML serialization assemblies! Don't get me started...

    Hope this helps!

    0 讨论(0)
  • 2020-12-18 12:14

    I'm afraid this won't work. Whatever driver you use, the directly or indirectly use the native OCI.DLL within the same process. And in your case, it must be the 64 bit version. So your application won't work with the 32 bit OCI.DLL.

    To work around this, you have two options:

    1. Write a separate 32 bit application responsible for accessing Oracle and somehow communicate with that application.

    2. Embed a 64 bit version of the Java VM and access Oracle via OJDBC (the only option independent of OCI.DLL).

    But I guess, these aren't very realistic options.

    0 讨论(0)
提交回复
热议问题