Uses of Interface
java.sql.Clob
Packages that use 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.sqlModifier and TypeInterfaceDescriptioninterfaceThe mapping in the Java programming language for the SQLNCLOBtype.Modifier and TypeMethodDescriptionConnection.createClob()Constructs an object that implements theClobinterface.CallableStatement.getClob(int parameterIndex)Retrieves the value of the designated JDBCCLOBparameter as ajava.sql.Clobobject in the Java programming language.Retrieves the value of a JDBCCLOBparameter as ajava.sql.Clobobject in the Java programming language.ResultSet.getClob(int columnIndex)Retrieves the value of the designated column in the current row of thisResultSetobject as aClobobject in the Java programming language.Retrieves the value of the designated column in the current row of thisResultSetobject as aClobobject in the Java programming language.SQLInput.readClob()Reads an SQLCLOBvalue from the stream and returns it as aClobobject in the Java programming language.Modifier and TypeMethodDescriptionlongRetrieves the character position at which the specifiedClobobjectsearchstrappears in thisClobobject.voidSets the designated parameter to the givenjava.sql.Clobobject.voidSets the designated parameter to the givenjava.sql.Clobobject.voidResultSet.updateClob(int columnIndex, Clob x)Updates the designated column with ajava.sql.Clobvalue.voidResultSet.updateClob(String columnLabel, Clob x)Updates the designated column with ajava.sql.Clobvalue.voidWrites an SQLCLOBvalue to the stream.
- 
Uses of Clob in javax.sql
- 
Uses of Clob in javax.sql.rowsetMethods in javax.sql.rowset with parameters of type Clob
- 
Uses of Clob in javax.sql.rowset.serialClasses in javax.sql.rowset.serial that implement ClobModifier and TypeClassDescriptionclassA serialized mapping in the Java programming language of an SQLCLOBvalue.Methods in javax.sql.rowset.serial that return ClobModifier and TypeMethodDescriptionSQLInputImpl.readClob()Retrieves theCLOBvalue at the head of thisSQLInputImplobject as aClobobject in the Java programming language.Methods in javax.sql.rowset.serial with parameters of type ClobModifier and TypeMethodDescriptionlongReturns the position in thisSerialClobobject where the givenClobsignature begins, starting the search at the specified position.voidWrites aClobobject in the Java programming language to thisSQLOutputImplobject.Constructors in javax.sql.rowset.serial with parameters of type ClobModifierConstructorDescriptionSerialClob(Clob clob)Constructs aSerialClobobject that is a serialized version of the givenClobobject.