Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
More OCI Relational Functions, 72 of 106
Determines whether or not a given OCIThreadId is the NULL
thread Id.
sword OCIThreadIdNull ( dvoid *hndl, OCIError *err, OCIThreadId *tid, boolean *result );
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()
.
Pointer to the OCIThreadId to check.
Pointer to the result.
If tid
is the NULL
thread ID, result
is set to TRUE
. Otherwise, result
is set to FALSE
. tid
should be initialized by OCIThreadIdInit()
.
OCIThreadIdDestroy(), OCIThreadIdGet(), OCIThreadIdInit(), OCIThreadIdSame(), OCIThreadIdSet(), OCIThreadIdSetNull()
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|