| Java™ Platform Standard Ed. 6 | ||||||||||
| java.sql | Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java programming language. |
| javax.sql | Provides the API for server side data source access and processing fromthe Java programming language. |
| javax.sql.rowset | Standard interfaces and base classes for JDBCRowSetimplementations. |
| javax.sql.rowset.serial | Provides utility classes to allow serializable mappings between SQL typesand data types in the Java programming language. |
| Methods injava.sql that returnArray | |
|---|---|
Connection.createArrayOf(String typeName,Object[] elements)Factory method for creating Array objects. | |
ResultSet.getArray(int columnIndex)Retrieves the value of the designated column in the current row of this ResultSet object as anArray object in the Java programming language. | |
CallableStatement.getArray(int parameterIndex)Retrieves the value of the designated JDBC ARRAY parameter as anArray object in the Java programming language. | |
ResultSet.getArray(String columnLabel)Retrieves the value of the designated column in the current row of this ResultSet object as anArray object in the Java programming language. | |
CallableStatement.getArray(String parameterName)Retrieves the value of a JDBC ARRAY parameter as anArray object in the Java programming language. | |
SQLInput.readArray()Reads an SQL ARRAY value from the stream and returns it as anArray object in the Java programming language. | |
| Methods injava.sql with parameters of typeArray | |
|---|---|
PreparedStatement.setArray(int parameterIndex,Array x)Sets the designated parameter to the given java.sql.Array object. | |
ResultSet.updateArray(int columnIndex,Array x)Updates the designated column with a java.sql.Array value. | |
ResultSet.updateArray(String columnLabel,Array x)Updates the designated column with a java.sql.Array value. | |
SQLOutput.writeArray(Array x)Writes an SQL ARRAY value to the stream. | |
| Methods injavax.sql with parameters of typeArray | |
|---|---|
RowSet.setArray(int i,Array x)Sets the designated parameter in this RowSet object's command with the givenArray value. | |
| Methods injavax.sql.rowset with parameters of typeArray | |
|---|---|
BaseRowSet.setArray(int parameterIndex,Array array)Sets the designated parameter to an Array object in the Java programming language. | |
| Classes injavax.sql.rowset.serial that implementArray | |
|---|---|
SerialArrayA serialized version of an Array object, which is the mapping in the Java programming language of an SQLARRAY value. | |
| Methods injavax.sql.rowset.serial that returnArray | |
|---|---|
SQLInputImpl.readArray()Reads an SQL ARRAY value from the stream and returns it as anArray object in the Java programming language. | |
| Methods injavax.sql.rowset.serial with parameters of typeArray | |
|---|---|
SQLOutputImpl.writeArray(Array x)Writes an Array object in the Java programming language to thisSQLOutputImpl object. | |
| Constructors injavax.sql.rowset.serial with parameters of typeArray | |
|---|---|
SerialArray(Array array)Constructs a new SerialArray object from the givenArray object. | |
SerialArray(Array array,Map<String,Class<?>> map)Constructs a new SerialArray object from the givenArray object, using the given type map for the custom mapping of each element when the elements are SQL UDTs. | |
| Java™ Platform Standard Ed. 6 | ||||||||||