Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
More OCI Relational Functions, 14 of 106
Gets the LOB locator's character set form, if any.
sword OCILobCharSetForm ( OCIEnv *envhp, OCIError *errhp, CONST OCILobLocator *locp, ub1 *csfrm );
OCI environment handle.
An error handle you can pass to OCIErrorGet()
for diagnostic information in the event of an error.
LOB locator for which to get the character set form.
Character set form of the input LOB locator. If the input locator, locp,
is for a BLOB or a BFILE,csfrm
is set to 0 since there is no concept of a character set for binary LOBs and FILEs. The caller must allocate space for the csfrm
(a ub1).
csfrm
has two possible nonzero values:
The default value is SQLCS_IMPLICIT.
Returns the character set form of the input LOB locator in the csfrm
output parameter. This function makes sense only for character LOBs (that is, CLOBs
and NCLOBs
).
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|