| Package | Description |
|---|---|
| java.sql |
Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java
TM programming language.
|
| javax.sql |
Provides the API for server side data source access and processing from the Java
TM programming language.
|
| javax.sql.rowset |
Standard interfaces and base classes for JDBC
RowSet implementations.
|
| javax.sql.rowset.serial |
Provides utility classes to allow serializable mappings between SQL types and data types in the Java programming language.
|
| Modifier and Type | Method and Description |
|---|---|
NClob |
Connection.createNClob()
Constructs an object that implements the
NClob interface.
|
NClob |
ResultSet.getNClob(int columnIndex)
Retrieves the value of the designated column in the current row of this
ResultSet object as a
NClob object in the Java programming language.
|
NClob |
CallableStatement.getNClob(int parameterIndex)
Retrieves the value of the designated JDBC
NCLOB parameter as a
java.sql.NClob object in the Java programming language.
|
NClob |
ResultSet.getNClob(String
Retrieves the value of the designated column in the current row of this
ResultSet object as a
NClob object in the Java programming language.
|
NClob |
CallableStatement.getNClob(String
Retrieves the value of a JDBC
NCLOB parameter as a
java.sql.NClob object in the Java programming language.
|
NClob |
SQLInput.readNClob()
Reads an SQL
NCLOB value from the stream and returns it as a
NClob object in the Java programming language.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PreparedStatement.setNClob(int parameterIndex, NClob
Sets the designated parameter to a
java.sql.NClob object.
|
void |
CallableStatement.setNClob(String
Sets the designated parameter to a
java.sql.NClob object.
|
void |
ResultSet.updateNClob(int columnIndex, NClob
Updates the designated column with a
java.sql.NClob value.
|
void |
ResultSet.updateNClob(String
Updates the designated column with a
java.sql.NClob value.
|
void |
SQLOutput.writeNClob(NClob
Writes an SQL
NCLOB value to the stream.
|
| Modifier and Type | Method and Description |
|---|---|
void |
RowSet.setNClob(int parameterIndex, NClob
Sets the designated parameter to a
java.sql.NClob object.
|
void |
RowSet.setNClob(String
Sets the designated parameter to a
java.sql.NClob object.
|
| Modifier and Type | Method and Description |
|---|---|
void |
BaseRowSet.setNClob(int parameterIndex, NClob
Sets the designated parameter to a
java.sql.NClob object.
|
void |
BaseRowSet.setNClob(String
Sets the designated parameter to a
java.sql.NClob object.
|
| Modifier and Type | Method and Description |
|---|---|
NClob |
SQLInputImpl.readNClob()
Reads an SQL
NCLOB value from the stream and returns it as a
Clob object in the Java programming language.
|
| Modifier and Type | Method and Description |
|---|---|
void |
SQLOutputImpl.writeNClob(NClob
Writes an SQL
NCLOB value to the stream.
|