Added Methods |
OutputStream setAsciiStream(long )
|
Retrieves a stream to be used to write Ascii characters to the CLOB value that this Clob object represents starting at position pos . |
Writer setCharacterStream(long )
|
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 . |
int setString(long, String)
|
Writes the given Java String to the CLOB value that this Clob object designates at the position pos . |
int setString(long, String, int, int)
|
Writes len characters of str starting at character offset to the CLOB value that this Clob represents. |
void truncate(long )
|
Truncates the CLOB value that this Clob designates to have a length of len characters. |
Changed Methods |
InputStream getAsciiStream()
|
Documentation changed from old to new. |
Retrieves the CLOB value designated by this Clob object as an ascii stream. |
Reader getCharacterStream()
|
Documentation changed from old to new. |
Retrieves the CLOB value designated by this Clob object as a java.io.Reader object (or as a stream of characters). |
String getSubString(long, int)
|
Documentation changed from old to new. |
Retrieves a copy of the specified substring in the CLOB value designated by this Clob object. |
long length()
|
Documentation changed from old to new. |
Retrieves the number of characters in the CLOB value designated by this Clob object. |
long position(String, long)
|
Documentation changed from old to new. |
Retrieves the character position at which the specified substring searchstr appears in the SQL CLOB value represented by this Clob object. |
long position(Clob, long)
|
Documentation changed from old to new. |
Retrieves the character position at which the specified Clob object searchstr appears in this Clob object. |