Methods Summary |
---|
public java.io.InputStream | getAsciiStream()Retrieves the CLOB value designated by this Clob
object as an ascii stream.
|
public java.io.Reader | getCharacterStream()Retrieves the CLOB value designated by this Clob
object as a java.io.Reader object (or as a stream of
characters).
|
public java.lang.String | getSubString(long pos, int length)Retrieves a copy of the specified substring
in the CLOB value
designated by this Clob object.
The substring begins at position
pos and has up to length consecutive
characters.
|
public long | length()Retrieves the number of characters
in the CLOB value
designated by this Clob object.
|
public long | position(java.lang.String searchstr, long start)Retrieves the character position at which the specified substring
searchstr appears in the SQL CLOB value
represented by this Clob object. The search
begins at position start .
|
public long | position(java.sql.Clob searchstr, long start)Retrieves the character position at which the specified
Clob object searchstr appears in this
Clob object. The search begins at position
start .
|
public java.io.OutputStream | setAsciiStream(long pos)Retrieves a stream to be used to write Ascii characters to the
CLOB value that this Clob object represents,
starting at position pos .
|
public java.io.Writer | setCharacterStream(long pos)Retrieves a stream to be used to write a stream of Unicode characters
to the CLOB value that this Clob object
represents, at position pos .
|
public int | setString(long pos, java.lang.String str)Writes the given Java String to the CLOB
value that this Clob object designates at the position
pos .
|
public int | setString(long pos, java.lang.String str, int offset, int len)Writes len characters of str , starting
at character offset , to the CLOB value
that this Clob represents.
|
public void | truncate(long len)Truncates the CLOB value that this Clob
designates to have a length of len
characters.
|