Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
OCI Datatype Mapping and Manipulation Functions, 110 of 134
Assigns raw bytes of type ub1* to Oracle OCIRaw* datatype.
sword OCIRawAssignBytes ( OCIEnv *env, OCIError *err, CONST ub1 *rhs, ub4 rhs_len, OCIRaw **lhs );
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()
.
Right-hand side (source) of the assignment, of datatype ub1.
Length of the rhs
raw bytes.
Left-hand side (target) of the assignment OCIRaw data.
Assigns rhs
raw bytes to lhs
raw datatype. The lhs
raw may be resized depending upon the size of the rhs
. The raw bytes assigned are of type ub1.
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|