Uses of Interface
java.sql.NClob
| 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 JDBC  RowSetimplementations. | 
| javax.sql.rowset.serial | Provides utility classes to allow serializable mappings between SQL types
 and data types in the Java programming language. | 
- 
Uses of NClob in java.sqlMethods in java.sql that return NClob Modifier and Type Method Description NClobConnection. createNClob()Constructs an object that implements theNClobinterface.NClobCallableStatement. getNClob(int parameterIndex)Retrieves the value of the designated JDBCNCLOBparameter as ajava.sql.NClobobject in the Java programming language.NClobCallableStatement. getNClob(String parameterName)Retrieves the value of a JDBCNCLOBparameter as ajava.sql.NClobobject in the Java programming language.NClobResultSet. getNClob(int columnIndex)Retrieves the value of the designated column in the current row of thisResultSetobject as aNClobobject in the Java programming language.NClobResultSet. getNClob(String columnLabel)Retrieves the value of the designated column in the current row of thisResultSetobject as aNClobobject in the Java programming language.NClobSQLInput. readNClob()Reads an SQLNCLOBvalue from the stream and returns it as aNClobobject in the Java programming language.Methods in java.sql with parameters of type NClob Modifier and Type Method Description voidCallableStatement. setNClob(String parameterName, NClob value)Sets the designated parameter to ajava.sql.NClobobject.voidPreparedStatement. setNClob(int parameterIndex, NClob value)Sets the designated parameter to ajava.sql.NClobobject.voidResultSet. updateNClob(int columnIndex, NClob nClob)Updates the designated column with ajava.sql.NClobvalue.voidResultSet. updateNClob(String columnLabel, NClob nClob)Updates the designated column with ajava.sql.NClobvalue.voidSQLOutput. writeNClob(NClob x)Writes an SQLNCLOBvalue to the stream.
- 
Uses of NClob in javax.sqlMethods in javax.sql with parameters of type NClob Modifier and Type Method Description voidRowSet. setNClob(int parameterIndex, NClob value)Sets the designated parameter to ajava.sql.NClobobject.voidRowSet. setNClob(String parameterName, NClob value)Sets the designated parameter to ajava.sql.NClobobject.
- 
Uses of NClob in javax.sql.rowsetMethods in javax.sql.rowset with parameters of type NClob Modifier and Type Method Description voidBaseRowSet. setNClob(int parameterIndex, NClob value)Sets the designated parameter to ajava.sql.NClobobject.voidBaseRowSet. setNClob(String parameterName, NClob value)Sets the designated parameter to ajava.sql.NClobobject.
- 
Uses of NClob in javax.sql.rowset.serialMethods in javax.sql.rowset.serial that return NClob Modifier and Type Method Description NClobSQLInputImpl. readNClob()Reads an SQLNCLOBvalue from the stream and returns it as aClobobject in the Java programming language.Methods in javax.sql.rowset.serial with parameters of type NClob Modifier and Type Method Description voidSQLOutputImpl. writeNClob(NClob x)Writes an SQLNCLOBvalue to the stream.