Skip Headers
Oracle® C++ Call Interface Programmer's Guide,
11g Release 1 (11.1)

Part Number B28390-01
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Index
Index
Go to Master Index
Master Index
Go to Feedback page
Contact Us

Go to previous page
Previous
Go to next page
Next
View PDF

Clob Class

The Clob class defines the common properties of objects of type CLOB. A Clob is a large character object stored as a column value in a row of a database table. A Clob object contains a logical pointer to a CLOB, not the CLOB itself.

Methods of the Clob class enable you to perform specific tasks related to Clob objects, including methods for getting the length of a SQL CLOB, for materializing a CLOB on the client, and for extracting a part of the CLOB.

The only methods valid on a NULL CLOB object are setName(), isNull(), and operator=().

Methods in the ResultSet and Statement classes, such as getClob() and setClob(), enable you to access an SQL CLOB value.

An uninitialized CLOB object can be initialized by:

See Also:

Table 13-10 Summary of Clob Methods

Method Summary

Clob()


Clob class constructor.

append()


Appends a Clob at the end of the current Clob.

close()


Closes a previously opened Clob.

closeStream()


Closes the Stream object obtained from the current Clob.

copy()


Copies all or a portion of a Clob or BFILE into the current Clob.

getCharSetForm()


Returns the character set form of the Clob.

getCharSetId()


Returns the character set ID of the Clob.

getCharSetIdUString()


Retrieves the characterset name associated with the Clob; UString version.

getChunkSize()


Returns the smallest data size to perform efficient writes to the CLOB.

getOptions()


Returns the CLOB's LobOptionValue for a specified LobOptionType.

getStream()


Returns data from the CLOB as a Stream object.

isInitialized()


Tests whether the Clob object is initialized.

isNull()


Tests whether the Clob object is atomically NULL.

isOpen()


Tests whether the Clob is open.

length()


Returns the number of characters in the current CLOB.

open()


Opens the CLOB with read or read/write access.

operator=()


Assigns a CLOB locator to the current Clob object.

operator==()


Tests whether two Clob objects are equal.

operator!=()


Tests whether two Clob objects are not equal.

read()


Reads a portion of the CLOB into a buffer.

setCharSetId()


Sets the character set ID associated with the Clob.

setCharSetIdUString()


Sets the character set ID associated with the Clob; used when the environment character set is UTF16.

setCharSetForm()


Sets the character set form associated with the Clob.

setEmpty()


Sets the Clob object to empty.

setNull()


Sets the Clob object to atomically NULL.

setOptions()


Specifies a LobOptionValue for a particular LobOptionType. Enables advanced compression, encryption and deduplication of CLOBs.

trim()


Truncates the Clob to a specified length.

write()


Writes a buffer into an unopened CLOB.

writeChunk()


Writes a buffer into an open CLOB.



Clob()

Clob class constructor.

Syntax Description
Clob();
Creates a NULL Clob object.
Clob(
   const Connection *connectionp);
Creates an uninitialized Clob object.
Clob(
   const Clob *srcClob);
Creates a copy of a Clob object.

Parameter Description
connectionp
Connection pointer
srcClob
The source Clob object


append()

Appends a CLOB to the end of the current CLOB.

Syntax

void append(
   const Clob &srcClob);
Parameter Description
srcClob
The CLOB to be appended to the current CLOB.


close()

Closes a CLOB.

Syntax

void close();

closeStream()

Closes the Stream object obtained from the CLOB.

Syntax

void closeStream(
   Stream *stream);
Parameter Description
stream
The Stream object to be closed.


copy()

Copies a part or all of a BFILE or CLOB into the current CLOB.

OCCI does not perform any characterset conversions when loading data from a Bfile into a Clob; therefore, ensure that the contents of the Bfile are character data in the server's Clob storage characterset.

Syntax Description
void copy(
   const Bfile &srcBfile,
   unsigned int numBytes,
   unsigned int dstOffset = 1,
   unsigned int srcOffset = 1);
Copies a BFILE into the current CLOB.
void copy(
   const Clob &srcClob,
   unsigned int numBytes,
   unsigned int dstOffset = 1,
   unsigned int srcOffset = 1);
Copies a CLOB into the current CLOB.

If the destination CLOB has deduplication enabled, and the source and destination CLOBs are in the same column, the new CLOB will be created as copy-on-write. All other settings are inherited from the source CLOB. If the destination CLOB has deduplication disabled, it will be a completely new copy of the CLOB.


Parameter Description
srcBfile
The BFILE from which the data is to be copied.
srcClob
The CLOB from which the data is to be copied.
numBytes
The number of bytes to be copied from the source BFILE or CLOB. Valid values are numbers greater than 0.
dstOffset
The starting position at which data is to be is at 0.

The starting position at which to begin writing data into the current CLOB Valid values are numbers greater than or equal to 1 written in the destination buffer; the position of the first byte.

srcOffset
The starting position at which to begin reading data from the source BFILE or CLOB. Valid values are numbers greater than or equal to 1.


getCharSetForm()

Returns the character set form of the CLOB.

Syntax

CharSetForm getCharSetForm() const;

getCharSetId()

Returns the character set ID of the CLOB, in string form.

Syntax

string getCharSetId() const;

getCharSetIdUString()

Retrieves the characterset name associated with the Clob; UString version.

Syntax

UString getCharSetIdUString() const;

getChunkSize()

Returns the smallest data size to perform efficient writes to the CLOB.

Syntax

unsigned int getChunkSize() const;

getOptions()

Returns the CLOB's LobOptionValue for a specified LobOptionType.

Will throw an exception if attempting to retrieve a value for an option that is not configured on the database column or partition that stores the CLOB.

Syntax

LobOptionValue getOptions(
   LobOptionType optType);
Parameter Description
optType
The LobOptionType setting requested. These may be combined using bitwise or (|) to avoid server round trips. See Table 7-1, "Values of Type LobOptionType" and Table 7-2, "Values of Type LobOptionValue"


getStream()

Returns a Stream object from the CLOB. If a stream is already open, it is disallowed to open another stream on CLOB object, so the user must always close the stream before performing any Clob object operations. The client's character set id and form will be used by default, unless they are explicitly set through setCharSetId() and setEmpty() calls.

Syntax

Stream* getStream(
   unsigned int offset = 1,
   unsigned int amount = 0);
Parameter Description
offset
The starting position at which to begin reading data from the CLOB. If offset is not specified, the data is written from the beginning of the CLOB. Valid values are numbers greater than or equal to 1.
amount
The total number of consecutive characters to be read. If amount is 0, the data will be read from the offset value until the end of the CLOB.


isInitialized()

Tests whether the Clob object is initialized. If the Clob object is initialized, TRUE is returned; otherwise, FALSE is returned.

Syntax

bool isInitialized() const;

isNull()

Tests whether the Clob object is atomically NULL. If the Clob object is atomically NULL, TRUE is returned; otherwise, FALSE is returned.

Syntax

bool isNull() const;

isOpen()

Tests whether the CLOB is open. If the CLOB is open, TRUE is returned; otherwise, FALSE is returned.

Syntax

bool isOpen() const;

length()

Returns the number of characters in the CLOB.

Syntax

unsigned int length() const;

open()

Opens the CLOB in read/write or read-only mode.

Syntax

void open(
   LObOpenMode mode = OCCI_LOB_READWRITE);
Parameter Description
mode
The mode the CLOB is to be opened in. Valid values are:
  • OCCI_LOB_READWRITE

  • OCCI_LOB_READONLY



operator=()

Assigns a CLOB to the current CLOB. The source CLOB gets copied to the destination CLOB only when the destination CLOB gets stored in the table.

Syntax

Clob& operator=(
   const Clob &srcClob);
Parameter Description
srcClob
The Clob from which the data must be copied.


operator==()

Compares two Clob objects for equality. Two Clob objects are equal if they both refer to the same CLOB. Two NULL Clob objects are not considered equal. If the Blob objects are equal, then TRUE is returned; otherwise, FALSE is returned.

Syntax

bool operator==(
   const Clob &srcClob) const;
Parameter Description
srcClob
The Clob object to be compared with the current Clob object.


operator!=()

Compares two Clob objects for inequality. Two Clob objects are equal if they both refer to the same CLOB. Two NULL Clob objects are not considered equal. If the Clob objects are not equal, then TRUE is returned; otherwise, FALSE is returned.

Syntax

bool operator!=(
   const Clob &srcClob) const;
Parameter Description
srcClob
The Clob object to be compared with the current Clob object.


read()

Reads a part or all of the CLOB into a buffer.

Returns the actual number of characters read for fixed-width charactersets, such as UTF16, or the number of bytes read for multibyte charactersets, including UTF8.

The client's character set id and form will be used by default, unless they are explicitly set through setCharSetId(), setCharSetIdUString() and setCharSetForm() calls.

Syntax Description
unsigned int read(
   unsigned int amt,
   unsigned char *buffer,
   unsigned int bufsize,
   unsigned int offset=1) const;
Reads a part or all of the CLOB into a buffer.
unsigned int read(
   unsigned int amt,
   unsigned utext *buffer,
   unsigned int bufsize,
   unsigned int offset=1) const;
Reads a part or all of the CLOB into a buffer; globalization enabled. Should be called after setting character set to OCCIUTF16 using setCharSetId() method.


Note:

For the second version of the method, the return value represents either the number of characters read for fixed-width charactersets (UTF16), or the number of bytes read for multibyte charactersets (including UTF8).

Parameter Description
amt
The number of bytes to be read. from the CLOB.
buffer
The buffer that the CLOB data is to be read into.
buffsize
The size of the buffer. Valid values are numbers greater than or equal to amt.
offset
The starting position at which to begin reading data from the CLOB. If offset is not specified, the data is written from the beginning of the CLOB. Valid values are numbers greater than or equal to 1.


setCharSetId()

Sets the Character set Id associated with Clob. The characterset id set will be used for read/write and getStream() operations. If no value is set explicitly, the default client's character set id is used. List of character sets supported is given in Globalization Support Guide Appendix A.

Syntax

void setCharSetId(
   const string &charset);
Parameter Description
charset
Oracle supported characterset name, such as E8DEC, ZHT16BIG5, or OCCIUTF16.


setCharSetIdUString()

Sets the Character set Id associated with Clob; used when the environment's characterset is UTF16. The charset id set will be used for read, write and getStream() operations.

Syntax

void setCharSetIdUSString(
   const string &charset);
Parameter Description
charset
Oracle supported characterset name, such as WE8DEC, ZHT16BIG5, or OCCIUTF16 in UString (UTF16 characterset).


setCharSetForm()

Sets the character set form associated with the CLOB. The charset form set will be used for read, write and getStream() operations. If no value is set explicitly, by default, OCCI_SQLCS_IMPLICIT will be used.

Syntax

void setCharSetForm(
   CharSetForm csfrm );
Parameter Description
csfrm
The charset form for Clob.


setEmpty()

Sets the Clob object to empty.

Syntax Description
void setEmpty();
Sets the Clob object to empty.
void setEmpty(
   const Connection* connectionp);
Sets the Clob object to empty and initializes the connection pointer to the passed parameter.

Parameter Description
connectionp
The new connection pointer for the Clob object.


setNull()

Sets the Clob object to atomically NULL.

Syntax

void setNull();

setOptions()

Specifies a LobOptionValue for a particular LobOptionType. Enables advanced compression, encryption and deduplication of CLOBs. See Table 7-1, "Values of Type LobOptionType" and Table 7-2, "Values of Type LobOptionValue".

Will throw an exception if attempting to set or un-set an option that is not configured on the database column or partition that stores the CLOB. Will throw an exception if attempting to turn off encryption in an encrypted CLOB column.

Syntax

void setOptions(
   LobOptionType optType,
   LobOptionValue optValue);
Parameter Description
optType
The LobOptionType setting being specified. These may be combined using bitwise or (|) to avoid server round trips.
optValue
The LobOptionValue setting for the LobOptionType specified by the optType parameter


trim()

Truncates the CLOB to the new length specified.

Syntax

void trim(
   unsigned int newlen);
Parameter Description
newlen
The new length of the CLOB. Valid values are numbers less than or equal to the current length of the CLOB.


write()

Writes data from a buffer into a CLOB.

This method implicitly opens the CLOB, copies the buffer into the CLOB, and implicitly closes the CLOB. If the CLOB is already open, use writeChunk() instead. The actual number of characters written is returned. The client's character set id and form will be used by default, unless they are explicitly set through setCharSetId() and setCharSetForm() calls.

Syntax Description
unsigned int write(
   unsigned int amt,
   unsigned char *buffer,
   unsigned int bufsize,
   unsigned int offset=1);
Writes data from a buffer into a CLOB.
unsigned int write(
   unsigned int amt,
   utext *buffer,
   unsigned int bufsize,
   unsigned int offset=1);
Writes data from a UTF16 buffer into a CLOB; globalization enabled. Should be called after setting character set to OCCIUTF16 using setCharSetIdUString() method.

Parameter Description
amt
The amount parameter represents:
  • number of characters written for fixed-width charactersets (UTF16)

  • number of bytes written for multibyte charactersets (including UTF8)

buffer
The buffer containing the data to be written to the CLOB.
buffsize
The size of the buffer containing the data to be written to the CLOB. Valid values are numbers greater than or equal to amt.
offset
The starting position at which to begin writing data into the CLOB. If offset is not specified, the data is written from the beginning of the CLOB. Valid values are numbers greater than or equal to 1.


writeChunk()

Writes data from a buffer into a previously opened CLOB.

The actual number of characters written is returned. The client's character set id and form will be used by default, unless they are explicitly set through setCharSetId() and setCharSetForm() calls.

Syntax Description
unsigned int writeChunk(
   unsigned int amt,
   unsigned char *buffer,
   unsigned int bufsize,
   unsigned int offset=1);
Writes data from a buffer into a previously opened CLOB.
unsigned int writeChunk(
   unsigned int amt,
   utext *buffer,
   unsigned int bufsize,
   unsigned int offset=1);
Writes data from a UTF16 buffer into a CLOB; globalization enabled. Should be called after setting characterset to OCCIUTF16 using setCharSetIdUString() method.

Parameter Description
amt
The amount parameter represents
  • number of characters written for fixed-width charactersets (UTF16)

  • number of bytes written for multibyte charactersets (including UTF8)

buffer
The buffer containing the data to be written to the CLOB.
buffsize
The size of the buffer containing the data to be written to the CLOB. Valid values are numbers greater than or equal to amt.
offset
The starting position at which to begin writing data into the CLOB. If offset is not specified, the data is written from the beginning of the CLOB. Valid values are numbers greater than or equal to 1.


getPrimary()

Retrieves the Clob object of the primary lob for the region.

Syntax

Clob* getPrimary();

getPrimaryOffset()

Retrieves the offset of the region in the primary Clob.

Syntax

oraub8 getPrimaryOffset();

getOffset()

Retrieves the offset of the region in this Clob.

Syntax

oraub8 getOffset();

getLength()

Retrieves the length of the region, in characters.

Syntax

oraub8 getLength();

getMimeType()

Retrieves the type of data stored.

Syntax

string getMimeType();