Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
More OCI Relational Functions, 66 of 106
Retrieves the OCIThreadHandle of the thread in which it is called.
sword OCIThreadHandleGet ( dvoid *hndl, OCIError *err, OCIThreadHandle *tHnd );
The OCI environment or user session handle.
The OCI error handle. If there is an error, it is recorded in err
and this function returns OCI_ERROR. Diagnostic information can be obtained by calling OCIErrorGet()
.
If not NULL, the location to place the thread handle for the thread.
tHnd
should be initialized by OCIThreadHndInit()
.
The thread handle tHnd
retrieved by this function must be closed with OCIThreadClose()
and destroyed by OCIThreadHndDestroy()
after it is used.
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|