Uses of Interface
java.sql.Clob

Packages that useClob
Package
Description
java.sql
Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java programming language.
javax.sql
Provides the API for server side data source access and processing from the Java programming language.
javax.sql.rowset
Standard interfaces and base classes for JDBCRowSet implementations.
javax.sql.rowset.serial
Provides utility classes to allow serializable mappings between SQL types and data types in the Java programming language.
  • Uses ofClob injava.sql

    Subinterfaces ofClob injava.sql
    Modifier and Type
    Interface
    Description
    interface 
    The mapping in the Java programming language for the SQLNCLOB type.
    Methods injava.sql that returnClob
    Modifier and Type
    Method
    Description
    Connection.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.
    CallableStatement.getClob(String parameterName)
    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.
    ResultSet.getClob(String columnLabel)
    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.
    Methods injava.sql with parameters of typeClob
    Modifier and Type
    Method
    Description
    long
    Clob.position(Clob searchstr, long start)
    Retrieves the character position at which the specifiedClob objectsearchstr appears in thisClob object.
    void
    CallableStatement.setClob(String parameterName,Clob x)
    Sets the designated parameter to the givenjava.sql.Clob object.
    void
    PreparedStatement.setClob(int parameterIndex,Clob x)
    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
    SQLOutput.writeClob(Clob x)
    Writes an SQLCLOB value to the stream.
  • Uses ofClob injavax.sql

    Methods injavax.sql with parameters of typeClob
    Modifier and Type
    Method
    Description
    void
    RowSet.setClob(int i,Clob x)
    Sets the designated parameter in thisRowSet object's command with the givenClob value.
    void
    RowSet.setClob(String parameterName,Clob x)
    Sets the designated parameter to the givenjava.sql.Clob object.
  • Uses ofClob injavax.sql.rowset

    Methods injavax.sql.rowset with parameters of typeClob
    Modifier and Type
    Method
    Description
    void
    BaseRowSet.setClob(int parameterIndex,Clob x)
    Sets the designated parameter to the givenClob object in the Java programming language.
    void
    BaseRowSet.setClob(String parameterName,Clob x)
    Sets the designated parameter to the givenjava.sql.Clob object.
  • Uses ofClob injavax.sql.rowset.serial

    Classes injavax.sql.rowset.serial that implementClob
    Modifier and Type
    Class
    Description
    class 
    A serialized mapping in the Java programming language of an SQLCLOB value.
    Methods injavax.sql.rowset.serial that returnClob
    Modifier and Type
    Method
    Description
    SQLInputImpl.readClob()
    Retrieves theCLOB value at the head of thisSQLInputImpl object as aClob object in the Java programming language.
    Methods injavax.sql.rowset.serial with parameters of typeClob
    Modifier and Type
    Method
    Description
    long
    SerialClob.position(Clob searchStr, long start)
    Returns the position in thisSerialClob object where the givenClob signature begins, starting the search at the specified position.
    void
    SQLOutputImpl.writeClob(Clob x)
    Writes aClob object in the Java programming language to thisSQLOutputImpl object.
    Constructors injavax.sql.rowset.serial with parameters of typeClob
    Modifier
    Constructor
    Description
     
    Constructs aSerialClob object that is a serialized version of the givenClob object.