Uses of Interface
java.sql.Clob

Packages that use Clob
Package Description
java.sql  
javax.sql  
SQLite.JDBC2z  
  • Uses of Clob in java.sql

    Subinterfaces of Clob in java.sql
    Modifier and Type Interface Description
    interface  NClob  
    Methods in java.sql that return Clob
    Modifier and Type Method Description
    Clob Connection.createClob()
    Returns a new empty Clob.
    Clob CallableStatement.getClob​(int parameterIndex)
    Gets the value of a specified JDBC CLOB parameter as a java.sql.Clob.
    Clob CallableStatement.getClob​(String parameterName)
    Gets the value of a specified JDBC CLOB parameter as a java.sql.Clob.
    Clob ResultSet.getClob​(int columnIndex)
    Gets the value of a column specified by column index as a java.sql.Clob.
    Clob ResultSet.getClob​(String colName)
    Gets the value of a column specified by column name as a java.sql.Clob.
    Clob SQLInput.readClob()
    Returns the next attribute in the stream in the form of a java.sql.Clob.
    Methods in java.sql with parameters of type Clob
    Modifier and Type Method Description
    long Clob.position​(Clob searchstr, long start)
    Retrieves the character position at which a specified Clob object appears in this Clob object.
    void CallableStatement.setClob​(String parameterName, Clob clob)
    Sets the named parameter to the given clob.
    void PreparedStatement.setClob​(int parameterIndex, Clob theClob)
    Sets the value of a specified parameter to the given Clob object.
    void ResultSet.updateClob​(int columnIndex, Clob x)
    Updates a column specified by a column index with a java.sql.Clob value.
    void ResultSet.updateClob​(String columnName, Clob x)
    Updates a column specified by a column name with a java.sql.Clob value.
    void SQLOutput.writeClob​(Clob theClob)
    Write an SQL Clob value into the output stream.
  • Uses of Clob in javax.sql

    Methods in javax.sql with parameters of type Clob
    Modifier and Type Method Description
    void RowSet.setClob​(int parameterIndex, Clob theClob)
    Sets the value of the specified parameter in the RowSet command with the value of a supplied java.sql.Clob.
    void RowSet.setClob​(String parameterName, Clob theClob)
    Sets the value of the specified parameter in the RowSet command with the value of a supplied java.sql.Clob.
  • Uses of Clob in SQLite.JDBC2z

    Methods in SQLite.JDBC2z that return Clob
    Modifier and Type Method Description
    Clob JDBCConnection.createClob()  
    Clob JDBCPreparedStatement.getClob​(int parameterIndex)  
    Clob JDBCPreparedStatement.getClob​(String parameterName)  
    Clob JDBCResultSet.getClob​(int columnIndex)  
    Clob JDBCResultSet.getClob​(String columnName)  
    Methods in SQLite.JDBC2z with parameters of type Clob
    Modifier and Type Method Description
    void JDBCPreparedStatement.setClob​(int i, Clob x)  
    void JDBCResultSet.updateClob​(int colIndex, Clob x)  
    void JDBCResultSet.updateClob​(String colName, Clob x)