-
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.
|
-
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.
|
-