| 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 | Interface and Description |
|---|---|
interface |
NClob
The mapping in the Java™ programming language for the SQL
NCLOB type.
|
| Modifier and Type | Method and Description |
|---|---|
Clob |
Connection.createClob()
Constructs an object that implements the
Clob interface.
|
Clob |
ResultSet.getClob(int columnIndex)
Retrieves the value of the designated column in the current row of this
ResultSet object as a
Clob object in the Java programming language.
|
Clob |
CallableStatement.getClob(int parameterIndex)
Retrieves the value of the designated JDBC
CLOB parameter as a
java.sql.Clob object in the Java programming language.
|
Clob |
ResultSet.getClob(String
Retrieves the value of the designated column in the current row of this
ResultSet object as a
Clob object in the Java programming language.
|
Clob |
CallableStatement.getClob(String
Retrieves the value of a JDBC
CLOB parameter as a
java.sql.Clob object in the Java programming language.
|
Clob |
SQLInput.readClob()
Reads an SQL
CLOB value from the stream and returns it as a
Clob object in the Java programming language.
|
| Modifier and Type | Method and Description |
|---|---|
long |
Clob.position(Clob
Retrieves the character position at which the specified
Clob object
searchstr appears in this
Clob object.
|
void |
PreparedStatement.setClob(int parameterIndex, Clob
Sets the designated parameter to the given
java.sql.Clob object.
|
void |
CallableStatement.setClob(String
Sets the designated parameter to the given
java.sql.Clob object.
|
void |
ResultSet.updateClob(int columnIndex, Clob
Updates the designated column with a
java.sql.Clob value.
|
void |
ResultSet.updateClob(String
Updates the designated column with a
java.sql.Clob value.
|
void |
SQLOutput.writeClob(Clob
Writes an SQL
CLOB value to the stream.
|
| Modifier and Type | Method and Description |
|---|---|
void |
RowSet.setClob(int i, Clob
Sets the designated parameter in this
RowSet object's command with the given
Clob value.
|
void |
RowSet.setClob(String
Sets the designated parameter to the given
java.sql.Clob object.
|
| Modifier and Type | Method and Description |
|---|---|
void |
BaseRowSet.setClob(int parameterIndex, Clob
Sets the designated parameter to the given
Clob object in the Java programming language.
|
void |
BaseRowSet.setClob(String
Sets the designated parameter to the given
java.sql.Clob object.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SerialClob
A serialized mapping in the Java programming language of an SQL
CLOB value.
|
| Modifier and Type | Method and Description |
|---|---|
Clob |
SQLInputImpl.readClob()
Retrieves the
CLOB value at the head of this
SQLInputImpl object as a
Clob object in the Java programming language.
|
| Modifier and Type | Method and Description |
|---|---|
long |
SerialClob.position(Clob
Returns the position in this
SerialClob object where the given
Clob signature begins, starting the search at the specified position.
|
void |
SQLOutputImpl.writeClob(Clob
Writes a
Clob object in the Java programming language to this
SQLOutputImpl object.
|
| Constructor and Description | |
|---|---|
SerialClob(Clob
Constructs a
SerialClob object that is a serialized version of the given
Clob object.
|