All Known Implementing Classes:
SerialClob, NClob
CLOB type.
An SQL CLOB is a built-in type
that stores a Character Large Object as a column value in a row of
a database table.
By default drivers implement a Clob object using an SQL
locator(CLOB), which means that a Clob object
contains a logical pointer to the SQL CLOB data rather than
the data itself. A Clob object is valid for the duration
of the transaction in which it was created.
The Clob interface provides methods for getting the
length of an SQL CLOB (Character Large Object) value,
for materializing a CLOB value on the client, and for
searching for a substring or CLOB object within a
CLOB value.
Methods in the interfaces ResultSet ,
CallableStatement , and PreparedStatement , such as
getClob and setClob allow a programmer to
access an SQL CLOB value. In addition, this interface
has methods for updating a CLOB value.
All methods on the Clob interface must be fully implemented if the
JDBC driver supports the data type.
1.2 - | Method from java.sql.Clob Summary: |
|---|
| free, getAsciiStream, getCharacterStream, getCharacterStream, getSubString, length, position, position, setAsciiStream, setCharacterStream, setString, setString, truncate |
| Method from java.sql.Clob Detail: |
|---|
Clob object and releases the resources the resources
that it holds. The object is invalid once the free method
is called.
After |
CLOB value designated by this Clob
object as an ascii stream. |
CLOB value designated by this Clob
object as a java.io.Reader object (or as a stream of
characters). |
Reader object that contains a partial Clob value, starting
with the character specified by pos, which is length characters in length. |
CLOB value
designated by this Clob object.
The substring begins at position
pos and has up to length consecutive
characters. |
CLOB value
designated by this Clob object. |
searchstr appears in the SQL CLOB value
represented by this Clob object. The search
begins at position start. |
Clob object searchstr appears in this
Clob object. The search begins at position
start. |
CLOB value that this Clob object represents,
starting at position pos. Characters written to the stream
will overwrite the existing characters
in the Clob object starting at the position
pos. If the end of the Clob value is reached
while writing characters to the stream, then the length of the Clob
value will be increased to accomodate the extra characters.
Note: If the value specified for |
CLOB value that this Clob object
represents, at position pos. Characters written to the stream
will overwrite the existing characters
in the Clob object starting at the position
pos. If the end of the Clob value is reached
while writing characters to the stream, then the length of the Clob
value will be increased to accomodate the extra characters.
Note: If the value specified for |
String to the CLOB
value that this Clob object designates at the position
pos. The string will overwrite the existing characters
in the Clob object starting at the position
pos. If the end of the Clob value is reached
while writing the given string, then the length of the Clob
value will be increased to accomodate the extra characters.
Note: If the value specified for |
len characters of str, starting
at character offset, to the CLOB value
that this Clob represents. The string will overwrite the existing characters
in the Clob object starting at the position
pos. If the end of the Clob value is reached
while writing the given string, then the length of the Clob
value will be increased to accomodate the extra characters.
Note: If the value specified for |
CLOB value that this Clob
designates to have a length of len
characters.
Note: If the value specified for |