-
Subinterfaces of Clob in java.sql
| Modifier and Type |
Interface |
Description |
interface |
NClob |
|
Methods in java.sql that return Clob
| Modifier and Type |
Method |
Description |
Clob |
Connection.createClob() |
Returns a new empty Clob.
|
Clob |
CallableStatement.getClob(int parameterIndex) |
Gets the value of a specified JDBC CLOB parameter as a
java.sql.Clob.
|
Clob |
CallableStatement.getClob(String parameterName) |
Gets the value of a specified JDBC CLOB parameter as a
java.sql.Clob.
|
Clob |
ResultSet.getClob(int columnIndex) |
Gets the value of a column specified by column index as a
java.sql.Clob.
|
Clob |
ResultSet.getClob(String colName) |
Gets the value of a column specified by column name as a
java.sql.Clob.
|
Clob |
SQLInput.readClob() |
Returns the next attribute in the stream in the form of a
java.sql.Clob.
|
Methods in java.sql with parameters of type Clob
| Modifier and Type |
Method |
Description |
long |
Clob.position(Clob searchstr,
long start) |
Retrieves the character position at which a specified Clob object
appears in this Clob object.
|
void |
CallableStatement.setClob(String parameterName,
Clob clob) |
Sets the named parameter to the given clob.
|
void |
PreparedStatement.setClob(int parameterIndex,
Clob theClob) |
Sets the value of a specified parameter to the given Clob object.
|
void |
ResultSet.updateClob(int columnIndex,
Clob x) |
Updates a column specified by a column index with a java.sql.Clob
value.
|
void |
ResultSet.updateClob(String columnName,
Clob x) |
Updates a column specified by a column name with a java.sql.Clob
value.
|
void |
SQLOutput.writeClob(Clob theClob) |
Write an SQL Clob value into the output stream.
|
-
Methods in javax.sql with parameters of type Clob
| Modifier and Type |
Method |
Description |
void |
RowSet.setClob(int parameterIndex,
Clob theClob) |
Sets the value of the specified parameter in the RowSet command
with the value of a supplied java.sql.Clob.
|
void |
RowSet.setClob(String parameterName,
Clob theClob) |
Sets the value of the specified parameter in the RowSet command with the
value of a supplied java.sql.Clob.
|
-