Methods Summary |
---|
public java.lang.Object | getArray()Retrieves the contents of the SQL {@code ARRAY} value as a Java array
object.
|
public java.lang.Object | getArray(long index, int count)Returns part of the SQL {@code ARRAY} associated with this array,
starting at a particular {@code index} and comprising up to {@code count}
successive elements of the SQL array.
|
public java.lang.Object | getArray(long index, int count, java.util.Map map)Returns part of the SQL {@code ARRAY} associated with this array,
starting at a particular {@code index} and comprising up to {@code count}
successive elements of the SQL array.
|
public java.lang.Object | getArray(java.util.Map map)Returns the data from the underlying SQL {@code ARRAY} as a Java array.
|
public int | getBaseType()Returns the JDBC type of the entries in this array's underlying
SQL array.
|
public java.lang.String | getBaseTypeName()Returns the SQL type name of the entries in this array's underlying
SQL array.
|
public java.sql.ResultSet | getResultSet(java.util.Map map)Returns a {@code ResultSet} object which holds the entries of the SQL
{@code ARRAY} associated with this array.
|
public java.sql.ResultSet | getResultSet()Returns a ResultSet object which holds the entries of the SQL {@code
ARRAY} associated with this array.
|
public java.sql.ResultSet | getResultSet(long index, int count)Returns a {@code ResultSet} object that holds the entries of a subarray,
beginning at a particular index and comprising up to {@code count}
successive entries.
|
public java.sql.ResultSet | getResultSet(long index, int count, java.util.Map map)Returns a {@code ResultSet} object that holds the entries of a subarray,
beginning at a particular index and comprising up to {@code count}
successive entries.
|