Uses of Interface
java.sql.NClob
Package
Description
Provides the API for accessing and processing data stored in a
data source (usually a relational database) using the
Java programming language.
Provides the API for server side data source access and processing from
the Java programming language.
Standard interfaces and base classes for JDBC
RowSet
implementations.Provides utility classes to allow serializable mappings between SQL types
and data types in the Java programming language.
-
Uses of NClob in java.sql
Modifier and TypeMethodDescriptionConnection.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.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.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.Modifier and TypeMethodDescriptionvoid
Sets the designated parameter to ajava.sql.NClob
object.void
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 of NClob in javax.sql
-
Uses of NClob in javax.sql.rowset
-
Uses of NClob in javax.sql.rowset.serial
Modifier and TypeMethodDescriptionSQLInputImpl.readNClob()
Reads an SQLNCLOB
value from the stream and returns it as aClob
object in the Java programming language.Modifier and TypeMethodDescriptionvoid
SQLOutputImpl.writeNClob
(NClob x) Writes an SQLNCLOB
value to the stream.