Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
More OCI Relational Functions, 80 of 106
Gets the calling threads current value for a key.
sword OCIThreadKeyGet ( dvoid *hndl, OCIError *err, OCIThreadKey *key, dvoid **pValue );
The OCI environment or user session handle.
The OCI error handle. If there is an error and OCI_ERROR is returned, the error is recorded in err
and diagnostic information can be obtained by calling OCIErrorGet()
.
The key.
The location in which to place the thread-specific key value.
It is illegal to use this function on a key that has not been created using OCIThreadKeyInit()
.
If the calling thread has not yet assigned a value to the key, NULL
is placed in the location pointed to by pValue
.
OCIThreadKeyDestroy(), OCIThreadKeyInit(), OCIThreadKeySet()
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|