java.lang.Objectjavax.sql.rowset.serial.SerialClob
All Implemented Interfaces:
Cloneable, Clob, Serializable
CLOB value.
The SerialClob class provides a constructor for creating
an instance from a Clob object. Note that the Clob
object should have brought the SQL CLOB value's data over
to the client before a SerialClob object
is constructed from it. The data of an SQL CLOB value can
be materialized on the client as a stream of Unicode characters.
SerialClob methods make it possible to get a substring
from a SerialClob object or to locate the start of
a pattern of characters.
Jonathan - Bruce| Field Summary | ||
|---|---|---|
| static final long | serialVersionUID | The identifier that assists in the serialization of this SerialClob
object. |
| Constructor: |
|---|
SerialClob object that is a serialized version of
the given char array.
The new
|
SerialClob object that is a serialized
version of the given Clob object.
The new
Note: The
|
| Method from javax.sql.rowset.serial.SerialClob Summary: |
|---|
| free, getAsciiStream, getCharacterStream, getCharacterStream, getSubString, length, position, position, setAsciiStream, setCharacterStream, setString, setString, truncate |
| Methods from java.lang.Object: |
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from javax.sql.rowset.serial.SerialClob Detail: |
|---|
|
CLOB value designated by this SerialClob
object as an ascii stream. This method forwards the getAsciiStream
call to the underlying Clob object in the event that this
SerialClob object is instantiated with a Clob
object. If this SerialClob object is instantiated with
a char array, a SerialException object is thrown. |
SerialClob object's data as a stream
of Unicode characters. Unlike the related method, getAsciiStream,
a stream is produced regardless of whether the SerialClob object
was created with a Clob object or a char array. |
|
SerialClob object, starting at the given position
and continuing for the specified number or characters. |
SerialClob
object's array of characters. |
SerialClob object
where the given String object begins, starting
the search at the specified position. This method returns
-1 if the pattern is not found. |
SerialClob object
where the given Clob signature begins, starting
the search at the specified position. This method returns
-1 if the pattern is not found. |
CLOB value that this SerialClob object represents,
starting at position pos. This method forwards the
setAsciiStream() call to the underlying Clob object in
the event that this SerialClob object is instantiated with a
Clob object. If this SerialClob object is instantiated
with a char array, a SerialException object is thrown. |
CLOB value that this SerialClob object
represents, at position pos. This method forwards the
setCharacterStream() call to the underlying Clob
object in the event that this SerialClob object is instantiated with a
Clob object. If this SerialClob object is instantiated with
a char array, a SerialException is thrown. |
String to the CLOB
value that this SerialClob object represents, at the position
pos. |
len characters of str, starting
at character offset, to the CLOB value
that this Clob represents. |
CLOB value that this SerialClob
object represents so that it has a length of len
characters.
Truncating a |