Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
OCI Datatype Mapping and Manipulation Functions, 115 of 134
Assigns one REF
to another, such that both reference the same object.
sword OCIRefAssign ( OCIEnv *env, OCIError *err, CONST OCIRef *source, OCIRef **target );
The OCI environment handle initialized in object mode.
The OCI error handle. If there is an error, it is recorded in err
and this function returns OCI_ERROR. Obtain diagnostic information by calling OCIErrorGet()
.
REF to copy from.
REF
to copy to.
Copies source
REF
to target
REF
; both then reference the same object. If the target
REF
pointer is null (*target
== NULL
), then OCIRefAssign()
will allocate memory for the target
REF
in the OCI object cache prior to the copy.
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|