views:

962

answers:

1

I am attempting to use a 32 bit application to talk to an Oracle database from Vista 64 bit (Embarcadero RapidSQL). I already have the Oracle 11g 64 bit client installed for the web apps I develop, but because RapidSQL is a 32 bit application, it requires a 32 bit version of the Oracle client.

Is it safe to simply install the 32 bit Oracle client libraries in addition to the 64 bit ones, and if so are there any tips, tricks or gotchas I should be wary of when doing so?

+3  A: 

As long as you install them in a different ORACLE_HOME, it should be fine.

Matthew Watson
Thanks Matthew, that worked much more seamlessly than I expected. No mucking around with ORACLE_HOME paths or anything, yet my Win32 app now works, and my ASP.NET apps are still executing successfully using 64 bit worker processes. :-D
Cleggy