|
||||||||||
|
|
||||||||||
| Other Library Functions | ||||||||||
| function | OCI_olog |
Available in:
Sold separately |
|
Library: omoci - Oracle Call Interface database support
Include: omoci.xin |
Return type: Integer Returns: OCI_SUCCESS if the function completes without error. |
define external integer function OCI_olog
( value OCI_Handle_type lda,
value OCI_HostData_type hda,
value stream uid,
value integer uidl,
value stream pswd,
value integer pswdl,
value stream conn,
value integer connl,
value integer 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
)
| ---- |