Constant for read-only mode.
Constant for read/write mode.
This method compares two entire CLOBs or parts of two CLOBs.
0 if the compared portions are equal, non-zero if not
Error if offset1 or offset2 is not a valid CLOB offset value.
First target for comparison.
Second target for comparison.
Optional
optArgs: CompareOptionalArgumentsOptional arguments that specify amount and offsets.
createTemporary creates a temporary CLOB and its corresponding index in your default temporary tablespace. The temporary CLOB is created with SESSION duration.
Specifies if CLOB should be read into buffer cache or not.
Optional
isNClob: booleanIf set to true will create a temporary NCLOB instead of regular CLOB.
When creating the table, you can specify the chunking factor, a multiple of tablespace blocks in characters. This corresponds to the chunk size used by the CLOB data layer when accessing or modifying the CLOB value. Part of the chunk is used to store system-related information, and the rest stores the CLOB value. This method returns the amount of space used in the CLOB chunk to store the CLOB value.
This method reads a piece of a CLOB and returns the specified amount into the buffer parameter, starting from an absolute offset from the beginning of the CLOB. If the input offset points past the End of CLOB, a NO_DATA_FOUND exception is raised.
a string that contains the characters actually read.
Number of characters to read.
Offset in characters from the start of the CLOB (origin: 1).
This method writes data into an internal CLOB, starting from an absolute offset from the beginning of the CLOB. The data is written from the buffer parameter. WRITE replaces (overwrites) any data that already exists in the CLOB at the offset.
Offset in characters from the start of the CLOB (origin: 1) for the write operation.
Data to write.
JavaScript API for Oracle type Character Large Object (CLOB).