Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
More OCI Relational Functions, 73 of 106
Determines whether or not two OCIThreadIds represent the same thread.
sword OCIThreadIdSame ( dvoid *hndl, OCIError *err, OCIThreadId *tid1, OCIThreadId *tid2, 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 first OCIThreadId.
Pointer to the second OCIThreadId.
Pointer to the result.
If tid1
and tid2
represent the same thread, result
is set to TRUE
. Otherwise, result
is set to FALSE
. result
is set to TRUE
if both tid1
and tid2
are the NULL
thread ID. ti1d
and tid2
should be initialized by OCIThreadIdInit()
.
OCIThreadIdDestroy(), OCIThreadIdGet(), OCIThreadIdInit(), OCIThreadIdNull(), OCIThreadIdSet(), OCIThreadIdSetNull()
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|