| 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 |
|---|---|
Array |
Connection.createArrayOf(String
Factory method for creating Array objects.
|
Array |
ResultSet.getArray(int columnIndex)
Retrieves the value of the designated column in the current row of this
ResultSet object as an
Array object in the Java programming language.
|
Array |
CallableStatement.getArray(int parameterIndex)
Retrieves the value of the designated JDBC
ARRAY parameter as an
Array object in the Java programming language.
|
Array |
ResultSet.getArray(String
Retrieves the value of the designated column in the current row of this
ResultSet object as an
Array object in the Java programming language.
|
Array |
CallableStatement.getArray(String
Retrieves the value of a JDBC
ARRAY parameter as an
Array object in the Java programming language.
|
Array |
SQLInput.readArray()
Reads an SQL
ARRAY value from the stream and returns it as an
Array object in the Java programming language.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PreparedStatement.setArray(int parameterIndex, Array
Sets the designated parameter to the given
java.sql.Array object.
|
void |
ResultSet.updateArray(int columnIndex, Array
Updates the designated column with a
java.sql.Array value.
|
void |
ResultSet.updateArray(String
Updates the designated column with a
java.sql.Array value.
|
void |
SQLOutput.writeArray(Array
Writes an SQL
ARRAY value to the stream.
|
| Modifier and Type | Method and Description |
|---|---|
void |
RowSet.setArray(int i, Array
Sets the designated parameter in this
RowSet object's command with the given
Array value.
|
| Modifier and Type | Method and Description |
|---|---|
void |
BaseRowSet.setArray(int parameterIndex, Array
Sets the designated parameter to an
Array object in the Java programming language.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SerialArray
A serialized version of an
Array object, which is the mapping in the Java programming language of an SQL
ARRAY value.
|
| Modifier and Type | Method and Description |
|---|---|
Array |
SQLInputImpl.readArray()
Reads an SQL
ARRAY value from the stream and returns it as an
Array object in the Java programming language.
|
| Modifier and Type | Method and Description |
|---|---|
void |
SQLOutputImpl.writeArray(Array
Writes an
Array object in the Java programming language to this
SQLOutputImpl object.
|
| Constructor and Description | |
|---|---|
SerialArray(Array
Constructs a new
SerialArray object from the given
Array object.
|
|
SerialArray(Array
Constructs a new
SerialArray object from the given
Array object, using the given type map for the custom mapping of each element when the elements are SQL UDTs.
|