Uses of Interface
java.sql.NClob

Packages that useNClob
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 ofNClob injava.sql

    Methods injava.sql that returnNClob
    Modifier and Type
    Method
    Description
    Connection.createNClob()
    Constructs an object that implements theNClob interface.
    CallableStatement.getNClob(int parameterIndex)
    Retrieves the value of the designated JDBCNCLOB parameter as ajava.sql.NClob object in the Java programming language.
    CallableStatement.getNClob(String parameterName)
    Retrieves the value of a JDBCNCLOB parameter as ajava.sql.NClob object in the Java programming language.
    ResultSet.getNClob(int columnIndex)
    Retrieves the value of the designated column in the current row of thisResultSet object as aNClob object in the Java programming language.
    ResultSet.getNClob(String columnLabel)
    Retrieves the value of the designated column in the current row of thisResultSet object as aNClob object in the Java programming language.
    SQLInput.readNClob()
    Reads an SQLNCLOB value from the stream and returns it as aNClob object in the Java programming language.
    Methods injava.sql with parameters of typeNClob
    Modifier and Type
    Method
    Description
    void
    CallableStatement.setNClob(String parameterName,NClob value)
    Sets the designated parameter to ajava.sql.NClob object.
    void
    PreparedStatement.setNClob(int parameterIndex,NClob value)
    Sets the designated parameter to ajava.sql.NClob object.
    void
    ResultSet.updateNClob(int columnIndex,NClob nClob)
    Updates the designated column with ajava.sql.NClob value.
    void
    ResultSet.updateNClob(String columnLabel,NClob nClob)
    Updates the designated column with ajava.sql.NClob value.
    void
    SQLOutput.writeNClob(NClob x)
    Writes an SQLNCLOB value to the stream.
  • Uses ofNClob injavax.sql

    Methods injavax.sql with parameters of typeNClob
    Modifier and Type
    Method
    Description
    void
    RowSet.setNClob(int parameterIndex,NClob value)
    Sets the designated parameter to ajava.sql.NClob object.
    void
    RowSet.setNClob(String parameterName,NClob value)
    Sets the designated parameter to ajava.sql.NClob object.
  • Uses ofNClob injavax.sql.rowset

    Methods injavax.sql.rowset with parameters of typeNClob
    Modifier and Type
    Method
    Description
    void
    BaseRowSet.setNClob(int parameterIndex,NClob value)
    Sets the designated parameter to ajava.sql.NClob object.
    void
    BaseRowSet.setNClob(String parameterName,NClob value)
    Sets the designated parameter to ajava.sql.NClob object.
  • Uses ofNClob injavax.sql.rowset.serial

    Methods injavax.sql.rowset.serial that returnNClob
    Modifier and Type
    Method
    Description
    SQLInputImpl.readNClob()
    Reads an SQLNCLOB value from the stream and returns it as aClob object in the Java programming language.
    Methods injavax.sql.rowset.serial with parameters of typeNClob
    Modifier and Type
    Method
    Description
    void
    SQLOutputImpl.writeNClob(NClob x)
    Writes an SQLNCLOB value to the stream.