| java.lang.Object org.h2.message.TraceObject org.h2.jdbc.JdbcArray
getArray | public Object getArray() throws SQLException(Code) | | Returns the value as a Java array.
This method always returns an Object[].
the Object array |
getArray | public Object getArray(Map map) throws SQLException(Code) | | Returns the value as a Java array.
This method always returns an Object[].
Parameters: map - is ignored. Only empty or null maps are supported the Object array |
getArray | public Object getArray(long index, int count) throws SQLException(Code) | | Returns the value as a Java array. A subset of the array is returned,
starting from the index (1 meaning the first element) and up to the given
object count. This method always returns an Object[].
Parameters: index - the start index of the subset (starting with 1) Parameters: count - the maximum number of values the Object array |
getArray | public Object getArray(long index, int count, Map map) throws SQLException(Code) | | Returns the value as a Java array. A subset of the array is returned,
starting from the index (1 meaning the first element) and up to the given
object count. This method always returns an Object[].
Parameters: index - the start index of the subset (starting with 1) Parameters: count - the maximum number of values Parameters: map - is ignored. Only empty or null maps are supported the Object array |
getBaseType | public int getBaseType() throws SQLException(Code) | | Returns the base type of the array. This database does support mixed type
arrays and therefore there is no base type.
Types.NULL |
getBaseTypeName | public String getBaseTypeName() throws SQLException(Code) | | Returns the base type name of the array. This database does support mixed
type arrays and therefore there is no base type.
"NULL" |
getResultSet | public ResultSet getResultSet() throws SQLException(Code) | | Returns the value as a result set.
The first column contains the index
(starting with 1) and the second column the value.
the result set |
getResultSet | public ResultSet getResultSet(Map map) throws SQLException(Code) | | Returns the value as a result set. The first column contains the index
(starting with 1) and the second column the value.
Parameters: map - is ignored. Only empty or null maps are supported the result set |
getResultSet | public ResultSet getResultSet(long index, int count) throws SQLException(Code) | | Returns the value as a result set. The first column contains the index
(starting with 1) and the second column the value. A subset of the array
is returned, starting from the index (1 meaning the first element) and
up to the given object count.
Parameters: index - the start index of the subset (starting with 1) Parameters: count - the maximum number of values the result set |
getResultSet | public ResultSet getResultSet(long index, int count, Map map) throws SQLException(Code) | | Returns the value as a result set.
The first column contains the index
(starting with 1) and the second column the value.
A subset of the array is returned, starting from the index
(1 meaning the first element) and up to the given object count.
Parameters: index - the start index of the subset (starting with 1) Parameters: count - the maximum number of values Parameters: map - is ignored. Only empty or null maps are supported the result set |
Fields inherited from org.h2.message.TraceObject | final public static int CALLABLE_STATEMENTCONNECTIONDATABASE_META_DATAPREPARED_STATEMENTRESULT_SETRESULT_SET_META_DATASAVEPOINTSQL_EXCEPTIONSTATEMENTBLOBCLOBPARAMETER_META_DATA(Code)(Java Doc) final public static int DATA_SOURCEXA_DATA_SOURCEXIDARRAY(Code)(Java Doc)
|
|
|