Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: simon.wilbyHi zon,
Apologies if you've already done this but here's how I generally use the oci option to connect to an oracle instance.
download the appropriate oracle instant client from here:
http://www.oracle.com/technetwork/da...ex-097480.html
save the zip file to somewhere like C:\Oracle
extract the files to the same location so that there's a new directory like C:\Oracle\instantclient_11_2 (for example)
Update the windows environment variables
in windows xp this is done by: right clicking My Computer and then clicking properties. click the Advanced tab.
click Environment variables. under system variables there'll be a variable called Path. select this and edit. add at the end the following:
;C:\Oracle\instantclient_11_2 (e.g the location you saved the extracted instant client to)
Ok each screen to close and save your changes.
For reference the oci.dll file talked about is included in the oracle download. So basically you've just installed the client and told your system to use that directory for dll's. LAE should then be able to use the oci option.
Hope that helps.
Simon