| java.lang.Object javax.sql.rowset.serial.SerialArray
Method Summary | |
public Object | getArray() Answers the array that copies the SerialArray object. | public Object | getArray(long index, int count) | public Object | getArray(long index, int count, Map<String, Class<?>> map) | public Object | getArray(Map<String, Class<?>> map) | public int | getBaseType() | public String | getBaseTypeName() | public ResultSet | getResultSet() | public ResultSet | getResultSet(long index, int count) | public ResultSet | getResultSet(long index, int count, Map<String, Class<?>> map) | public ResultSet | getResultSet(Map<String, Class<?>> map) |
getArray | public Object getArray() throws SerialException(Code) | | Answers the array that copies the SerialArray object.
the array that copies the SerialArray object. throws: SerialException - if any error occurs when copy the array |
getArray | public Object getArray(long index, int count) throws SerialException(Code) | | Answers the array that copies the certain elements of the SerialArray
object
Parameters: index - the start offset Parameters: count - the length of element to be copied the array that copies the SerialArray object. throws: SerialException - if any error occurs when copy the array |
getArray | public Object getArray(long index, int count, Map<String, Class<?>> map) throws SerialException(Code) | | Answers the array that copies the certain elements of the SerialArray
object according to UDT map
Parameters: index - the start offset Parameters: count - the length of element to be copied Parameters: map - the UDT map the array that copies the SerialArray object. throws: SerialException - if any error occurs when copy the array |
getArray | public Object getArray(Map<String, Class<?>> map) throws SerialException(Code) | | Answers the array that copies the SerialArray object according to UDT map
Parameters: map - the UDT map the array that copies the SerialArray object. throws: SerialException - if any error occurs when copy the array |
getResultSet | public ResultSet getResultSet() throws SerialException(Code) | | Answers the base type of this array, but throw always
UnsupportedOperationException here
the base type of this array throws: SerialException - if any errors occur |
getResultSet | public ResultSet getResultSet(long index, int count) throws SerialException(Code) | | Answers the base type of this array, but throw always
UnsupportedOperationException here
Parameters: index - the start offset Parameters: count - the length of element to be copied the base type of this array throws: SerialException - if any errors occur |
getResultSet | public ResultSet getResultSet(long index, int count, Map<String, Class<?>> map) throws SerialException(Code) | | Answers the base type of this array, but throw always
UnsupportedOperationException here
Parameters: index - the start offset Parameters: count - the length of element to be copied Parameters: map - the UDT map the base type of this array throws: SerialException - if any errors occur |
|
|