| java.sql.Array
Array | public interface Array (Code) | | A Java representation of the SQL ARRAY type.
|
Method Summary | |
public Object | getArray() Retrieves the contents of the SQL ARRAY value as a Java array object. | public Object | getArray(long index, int count) Returns part of the SQL ARRAY associated with this Array, starting at a
particular index and comprising up to count successive elements of the
SQL array. | public Object | getArray(long index, int count, Map<String, Class<?>> map) Returns part of the SQL ARRAY associated with this Array, starting at a
particular index and comprising up to count successive elements of the
SQL array. | public Object | getArray(Map<String, Class<?>> map) Returns the SQL ARRAY associated with this Array. | public int | getBaseType() Returns the JDBC type of the entries in this Array's associated array. | public String | getBaseTypeName() Returns the SQL type name of the entries in the array associated with
this Array. | public ResultSet | getResultSet() Returns a ResultSet object which holds the entries of the SQL ARRAY
associated with this Array. | public ResultSet | getResultSet(long index, int count) Returns a ResultSet object that holds the entries of a subarray,
beginning at a particular index and comprising up to count successive
entries. | public ResultSet | getResultSet(long index, int count, Map<String, Class<?>> map) Returns a ResultSet object that holds the entries of a subarray,
beginning at a particular index and comprising up to count successive
entries. | public ResultSet | getResultSet(Map<String, Class<?>> map) Returns a ResultSet object which holds the entries of the SQL ARRAY
associated with this Array. |
getArray | public Object getArray() throws SQLException(Code) | | Retrieves the contents of the SQL ARRAY value as a Java array object.
A Java array containing the elements of this Array throws: SQLException - |
getArray | public Object getArray(long index, int count) throws SQLException(Code) | | Returns part of the SQL ARRAY associated with this Array, starting at a
particular index and comprising up to count successive elements of the
SQL array.
Parameters: index - Parameters: count - A Java array containing the subportion of elements of this Array throws: SQLException - |
getArray | public Object getArray(long index, int count, Map<String, Class<?>> map) throws SQLException(Code) | | Returns part of the SQL ARRAY associated with this Array, starting at a
particular index and comprising up to count successive elements of the
SQL array.
Parameters: index - Parameters: count - Parameters: map - A Java array containing the subportion of elements of this Array throws: SQLException - |
getBaseType | public int getBaseType() throws SQLException(Code) | | Returns the JDBC type of the entries in this Array's associated array.
An integer constant from the java.sql.Types class throws: SQLException - |
getBaseTypeName | public String getBaseTypeName() throws SQLException(Code) | | Returns the SQL type name of the entries in the array associated with
this Array.
The database specific name or a fully-qualified SQL type name. throws: SQLException - |
getResultSet | public ResultSet getResultSet() throws SQLException(Code) | | Returns a ResultSet object which holds the entries of the SQL ARRAY
associated with this Array.
the ResultSet throws: SQLException - |
getResultSet | public ResultSet getResultSet(long index, int count) throws SQLException(Code) | | Returns a ResultSet object that holds the entries of a subarray,
beginning at a particular index and comprising up to count successive
entries.
Parameters: index - Parameters: count - the ResultSet throws: SQLException - |
getResultSet | public ResultSet getResultSet(long index, int count, Map<String, Class<?>> map) throws SQLException(Code) | | Returns a ResultSet object that holds the entries of a subarray,
beginning at a particular index and comprising up to count successive
entries.
Parameters: index - Parameters: count - Parameters: map - the ResultSet throws: SQLException - |
|
|