Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
OCI Datatype Mapping and Manipulation Functions, 122 of 134
Gets allocated size of string memory in codepoints (Unicode) or in bytes.
sword OCIStringAllocSize ( OCIEnv *env, OCIError *err, CONST OCIString *vs, ub4 *allocsize );
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()
.
String whose allocated size in bytes is returned. vs
must be a non-null pointer.
The allocated size of string memory in bytes is returned.
The allocated size is greater than or equal to the actual string size.
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|