|        | |||||
|  | |||||
| function | OCI_olog | ||||
| Other Library Functions | 
| Library: OCI Include: omoci.xin | Returns: Numeric Returns OCI_SUCCESS if the function completes without error. | 
  define external counter function OCI_olog
     (  value OCI_Handle_type lda,
        value OCI_HostData_type hda,
        value stream uid,
        value counter uidl,
        value stream pswd,
        value counter pswdl,
        value stream conn,
        value counter connl,
        value counter mode
     )
This function establishes a connection between an OCI program and an Oracle database.
Input arguments:
Example:
  set RetCode to OCI_olog
     (  ConnectionHandle,
        HostData,
        "my_account",
        OCI_NTS,
        "my_password",
        OCI_NTS,
        "my_server",
        OCI_NTS,
        OCI_LM_DEF
     )
| ---- |