Java java.sql Clob fields, constructors, methods, implement or subclass

Example usage for Java java.sql Clob fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.sql Clob.

The text is from its open source code.

Implementation

java.sql.Clob has the following implementations.
Click this link to see all its implementation.

Method

voidfree()
This method releases the resources that the Clob object holds.
java.io.InputStreamgetAsciiStream()
Retrieves the CLOB value designated by this Clob object as an ascii stream.
java.io.ReadergetCharacterStream()
Retrieves the CLOB value designated by this Clob object as a java.io.Reader object (or as a stream of characters).
ClassgetClass()
Returns the runtime class of this Object .
StringgetSubString(long pos, int length)
Retrieves a copy of the specified substring in the CLOB value designated by this Clob object.
longlength()
Retrieves the number of characters in the CLOB value designated by this Clob object.
java.io.OutputStreamsetAsciiStream(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.WritersetCharacterStream(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 .
intsetString(long pos, String str)
Writes the given Java String to the CLOB value that this Clob object designates at the position pos .
StringtoString()
Returns a string representation of the object.