Any tips on how to check this?
When i let the application perform a tnsping i can see it uses a 64-bit client (result = 11.2.0.4.0 (64-bit) )
My path settings look like this:
c:\oracle\x64-client\bin;c:\oracle\x32-client\bin
NLS_LANG = DUTCH_THE NETHERLANDS.WE8MSWIN1252 (from the registry)...
It seems all works well until an actual query on the database is done. That would explain why changing the IsolationLevel on the Session componenent to ilUnchanged, prevents an earlier AV because the alter session query isn't triggered.
A small addition, i debugged the Oracle.pas en found out that the error occured on the code below.
if IsolationLevel <> ilUnchanged then
begin
NewIsolationLevel := IsolationLevel;
FIsolationLevel := ilUnchanged;
IsolationLevel := NewIsolationLevel;
end;
More specific it crashes on...
Hi there,
I am trying to create an ISAPI dll to run on a fully 64-bit machine, IIS 7 64-bit and Oracle 64-bit client.
The dll it self works fine, loads nicely in the browser etc..
There are several calls available and every call create a session, tries to connect and do some small database...