Recent content by Ric Ho

  1. R

    Access violation

    In the following code, the error code is 0. I could verify that the exception is raised by LogOn. OracleSession := TOracleSession.Create(nil); OracleSession.BytesPerCharacter := bcAutoDetect; OracleSession.LogonUsername := getConfigurationValue('ORACLE_USER'); OracleSession.LogonPassword :=...
  2. R

    Access violation

    "Access violation at address 016CF02D in module 'EmailServer.dll'. Read of address 00000000" The host application is ArgoSoft, a mail server that is totally independant from Oracle. EmailServer.dll is my DLL that uses the TOracleSession.
  3. R

    Access violation

    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...
Back
Top