Uses of Interface
java.sql.NClob

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

    Methods in java.sql that return NClob
    Modifier and Type Method Description
    NClob Connection.createNClob()
    Returns a new empty NClob.
    NClob CallableStatement.getNClob​(int parameterIndex)
    Returns the value of the specified SQL NCLOB parameter as a java.sql.NClob.
    NClob CallableStatement.getNClob​(String parameterName)
    Returns the value of the specified SQL NCLOB parameter as a java.sql.NClob.
    NClob ResultSet.getNClob​(int columnIndex)
    Returns an NClob corresponding to the value at the 1-based columnIndex.
    NClob ResultSet.getNClob​(String columnLabel)
    Returns an NClob corresponding to the value in the named column.
    NClob SQLInput.readNClob()
    Returns the next attribute in the stream in the form of a java.sql.NClob.
    Methods in java.sql with parameters of type NClob
    Modifier and Type Method Description
    void CallableStatement.setNClob​(String parameterName, NClob nclob)
    Sets the named parameter to the given nclob.
    void PreparedStatement.setNClob​(int parameterIndex, NClob value)
    Sets the value of the specified parameter to value.
    void ResultSet.updateNClob​(int columnIndex, NClob nClob)
    Updates the value at the 1-based columnIndex.
    void ResultSet.updateNClob​(String columnLabel, NClob nClob)
    Updates the value in the named column.
    void SQLOutput.writeNClob​(NClob theNClob)
    Write a Clob into the output stream as an SQL NCLOB.
  • Uses of NClob in javax.sql

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

    Methods in SQLite.JDBC2z that return NClob
    Modifier and Type Method Description
    NClob JDBCConnection.createNClob()  
    NClob JDBCResultSet.getNClob​(int colIndex)  
    NClob JDBCResultSet.getNClob​(String colName)  
    Methods in SQLite.JDBC2z with parameters of type NClob
    Modifier and Type Method Description
    void JDBCPreparedStatement.setNClob​(int parameterIndex, NClob value)  
    void JDBCPreparedStatement.setNClob​(String parameterName, NClob value)  
    void JDBCResultSet.updateNClob​(int colIndex, NClob nclob)  
    void JDBCResultSet.updateNClob​(String colName, NClob nclob)