Example usage for Java java.sql Clob fields, constructors, methods, implement or subclass
The text is from its open source code.
void | free() This method releases the resources that the Clob object holds. |
java.io.InputStream | getAsciiStream() Retrieves the CLOB value designated by this Clob object as an ascii stream. |
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). |
Class> | getClass() Returns the runtime class of this Object . |
String | getSubString(long pos, int length) Retrieves a copy of the specified substring in the CLOB value designated by this Clob object. |
long | length() Retrieves the number of characters in the CLOB value designated by this Clob object. |
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 . |
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 . |
int | setString(long pos, String str) Writes the given Java String to the CLOB value that this Clob object designates at the position pos . |
String | toString() Returns a string representation of the object. |