Hi,
I have a piece of code that works properly when executed by an EXE, but that causes an "access violation" when run in in DLL:
session := TOracleSession.Create(nil);
session.LogonUsername := 'ric';
session.LogonPassword := 'pwd';
// and so on...
// so far so good...