Uses of Interface
java.sql.Clob
Package
Description
Provides the API for accessing and processing data stored in a
data source (usually a relational database) using the
Java programming language.
Provides the API for server side data source access and processing from
the Java programming language.
Standard interfaces and base classes for JDBC
RowSet
implementations.Provides utility classes to allow serializable mappings between SQL types
and data types in the Java programming language.
-
Uses of Clob in java.sql
Modifier and TypeInterfaceDescriptioninterface
The mapping in the Java programming language for the SQLNCLOB
type.Modifier and TypeMethodDescriptionConnection.createClob()
Constructs an object that implements theClob
interface.CallableStatement.getClob
(int parameterIndex) Retrieves the value of the designated JDBCCLOB
parameter as ajava.sql.Clob
object in the Java programming language.Retrieves the value of a JDBCCLOB
parameter as ajava.sql.Clob
object in the Java programming language.ResultSet.getClob
(int columnIndex) Retrieves the value of the designated column in the current row of thisResultSet
object as aClob
object in the Java programming language.Retrieves the value of the designated column in the current row of thisResultSet
object as aClob
object in the Java programming language.SQLInput.readClob()
Reads an SQLCLOB
value from the stream and returns it as aClob
object in the Java programming language.Modifier and TypeMethodDescriptionlong
Retrieves the character position at which the specifiedClob
objectsearchstr
appears in thisClob
object.void
Sets the designated parameter to the givenjava.sql.Clob
object.void
Sets the designated parameter to the givenjava.sql.Clob
object.void
ResultSet.updateClob
(int columnIndex, Clob x) Updates the designated column with ajava.sql.Clob
value.void
ResultSet.updateClob
(String columnLabel, Clob x) Updates the designated column with ajava.sql.Clob
value.void
Writes an SQLCLOB
value to the stream. -
Uses of Clob in javax.sql
-
Uses of Clob in javax.sql.rowset
-
Uses of Clob in javax.sql.rowset.serial
Modifier and TypeClassDescriptionclass
A serialized mapping in the Java programming language of an SQLCLOB
value.Modifier and TypeMethodDescriptionSQLInputImpl.readClob()
Retrieves theCLOB
value at the head of thisSQLInputImpl
object as aClob
object in the Java programming language.Modifier and TypeMethodDescriptionlong
Returns the position in thisSerialClob
object where the givenClob
signature begins, starting the search at the specified position.void
Writes aClob
object in the Java programming language to thisSQLOutputImpl
object.ModifierConstructorDescriptionSerialClob
(Clob clob) Constructs aSerialClob
object that is a serialized version of the givenClob
object.