Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
More OCI Relational Functions, 15 of 106
Gets the LOB locator's database character set ID, if any.
sword OCILobCharSetId ( OCIEnv *envhp, OCIError *errhp, CONST OCILobLocator *locp, ub2 *csid );
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 ID.
Database character set ID of the input LOB locator. If the input locator is for a BLOB
or a BFILE
,csid
is set to 0 since there is no concept of a character set for binary LOBs/FILEs. The caller must allocate space for the csid
ub2.
Returns the character set ID of the input LOB locator in the csid
output parameter.
This function makes sense only for character LOBs (that is, CLOBs
, NCLOBs
).
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|