Recent content by recomp

  1. R

    Oracle client has been changed to Oracle10, Not logged on.

    Hi Marco! Thank you for your answer. The error occurred again after the reinstallation but we found that another Oracle product (Oracle Connector) uses orauts.dll also. The client finds this one. Although the path was correct, the client found the one of the Oracle Connector. The solution is the...
  2. R

    Oracle client has been changed to Oracle10, Not logged on.

    OK. And now what can I do? Any ideas? Best Regards Tom
  3. R

    Oracle client has been changed to Oracle10, Not logged on.

    Yes, we did it but the result is the same. If we return to Client 9 everything is OK. If we install a Client with a greater version the error occurs. Addition information: after calling OCIEnvCreate(envhp, EnvMode, nil, nil, nil, nil, 0, nil) not only Lastocierror = -1 but envhp = Nil. Best...
  4. R

    Oracle client has been changed to Oracle10, Not logged on.

    Dear Developers! I use this code part in a dll: ... try OCSSession.Connected := False; OCSSession.Connected := True; Result := True; except ... end; The Oracle9 client has been changed to Oracle10, and in case of OCSSession.Connected := True; is in exception, but the...
  5. R

    Access Violation at TOracleDataSet.Open() method

    Hi! We have the same problem. What can we do? What is the solution? Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit DOA:4.0.7.1 Thanks
  6. R

    Monitoring DLL

    Hi Marco, I just used the TOracleSession.Share() method. See the following code snippet from the DLL: procedure ShareSession(pHostSession: TOracleSession); begin ... pHostSession.Share( here is the session object of the DLL ); ... end;
  7. R

    Monitoring DLL

    Hi, I created a simple application and a simple DLL to test session sharing. It works correctly but if I put OracleMonitor in DLL the host application will not terminate. If I comment OracleMonitor the application will teminate without any problems. I use Delphi6 Enterprise and DOA 4.0.3.0 and...
  8. R

    PL/SQL table parameter problem

    :mad: It would be nice to have someone who could help us how to invoke a PL/SQL function. One of the parameters of this function is a PL/SQL table the items of which are made up of records. Our problem is how to invoke this function by Delphi 7. Below you will find an example of our problem...
Back
Top