com.ibatis.sqlmap.client.extensions
public interface ResultGetter
| Method Summary | |
|---|---|
| Array | getArray()
Gets an array from the underlying result set |
| BigDecimal | getBigDecimal()
Gets a BigDecimal from the underlying result set |
| Blob | getBlob()
Gets a Blob from the underlying result set |
| boolean | getBoolean()
Gets a boolean from the underlying result set |
| byte | getByte()
Gets a byte from the underlying result set |
| byte[] | getBytes()
Gets a byte[] from the underlying result set |
| Clob | getClob()
Gets a Clob from the underlying result set |
| int | getColumnIndex()
Returns the index of the column being got in the underlying ResultSet.
|
| String | getColumnName()
Returns the name of the column being got in the underlying ResultSet.
|
| Date | getDate()
Gets a Date from the underlying result set |
| Date | getDate(Calendar cal)
Gets a Date from the underlying result set using a calendar |
| double | getDouble()
Gets a double from the underlying result set |
| float | getFloat()
Gets a float from the underlying result set |
| int | getInt()
Gets an int from the underlying result set |
| long | getLong()
Gets a long from the underlying result set |
| Object | getObject()
Gets an Object from the underlying result set |
| Object | getObject(Map map)
Gets an Object from the underlying result set using a Map |
| Ref | getRef()
Gets a Ref from the underlying result set |
| ResultSet | getResultSet()
Returns the underlying ResultSet...be careful! |
| short | getShort()
Gets a short from the underlying result set |
| String | getString()
Gets a String from the underlying result set |
| Time | getTime()
Gets a Time from the underlying result set |
| Time | getTime(Calendar cal)
Gets a Time from the underlying result set using a Calendar |
| Timestamp | getTimestamp()
Gets a Timestamp from the underlying result set |
| Timestamp | getTimestamp(Calendar cal)
Gets a Timestamp from the underlying result set |
| URL | getURL()
Gets a URL from the underlying result set |
| boolean | wasNull()
Tells if the field was null |
Returns: - the array
Throws: SQLException - if the underlying result set throws an exception
Returns: - the BigDecimal
Throws: SQLException - if the underlying result set throws an exception
Returns: - the Blob
Throws: SQLException - if the underlying result set throws an exception
Returns: - the boolean
Throws: SQLException - if the underlying result set throws an exception
Returns: - the byte
Throws: SQLException - if the underlying result set throws an exception
Returns: - the byte[]
Throws: SQLException - if the underlying result set throws an exception
Returns: - the Clob
Throws: SQLException - if the underlying result set throws an exception
getColumnName
is null.
Returns: the index of the column (if zero then use the column name)
null in which case the getColumnIndex
method should be used.
Returns: the column name (may be null)
Returns: - the Date
Throws: SQLException - if the underlying result set throws an exception
Parameters: cal - the Calendar
Returns: - the Date
Throws: SQLException - if the underlying result set throws an exception
Returns: - the double
Throws: SQLException - if the underlying result set throws an exception
Returns: - the float
Throws: SQLException - if the underlying result set throws an exception
Returns: - the int
Throws: SQLException - if the underlying result set throws an exception
Returns: - the long
Throws: SQLException - if the underlying result set throws an exception
Returns: - the Object
Throws: SQLException - if the underlying result set throws an exception
Parameters: map - the Map
Returns: - the Object
Throws: SQLException - if the underlying result set throws an exception
Returns: - the Ref
Throws: SQLException - if the underlying result set throws an exception
Returns: a ResultSet instance.
Returns: - the short
Throws: SQLException - if the underlying result set throws an exception
Returns: - the String
Throws: SQLException - if the underlying result set throws an exception
Returns: - the Time
Throws: SQLException - if the underlying result set throws an exception
Parameters: cal - the Calendar
Returns: - the Time
Throws: SQLException - if the underlying result set throws an exception
Returns: - the Timestamp
Throws: SQLException - if the underlying result set throws an exception
Parameters: cal - the Calendar
Returns: - the Timestamp
Throws: SQLException - if the underlying result set throws an exception
Returns: - the URL
Throws: SQLException - if the underlying result set throws an exception
Returns: - true if it was null
Throws: SQLException - if the underlying result set throws an exception