Methods Summary |
---|
public void | afterLast()Go to a location just after the last result
|
public void | beforeFirst()Go to a location just before first result (this is the initial location)
|
public void | close()Release resources immediately.
|
public boolean | first()Go to the first result
|
public java.lang.Object[] | get()Get the current row of results
|
public java.lang.Object | get(int i)Get the ith object in the current row of results, without
initializing any other results in the row. This method may be used
safely, regardless of the type of the column (ie. even for scalar
results).
|
public java.math.BigDecimal | getBigDecimal(int col)Convenience method to read a big_decimal
|
public java.math.BigInteger | getBigInteger(int col)Convenience method to read a big_integer
|
public byte[] | getBinary(int col)Convenience method to read a binary
|
public java.sql.Blob | getBlob(int col)Convenience method to read a blob
|
public java.lang.Boolean | getBoolean(int col)Convenience method to read a boolean
|
public java.lang.Byte | getByte(int col)Convenience method to read a byte
|
public java.util.Calendar | getCalendar(int col)Convenience method to read a calendar or calendar_date
|
public java.lang.Character | getCharacter(int col)Convenience method to read a character
|
public java.sql.Clob | getClob(int col)Convenience method to read a clob
|
public java.util.Date | getDate(int col)Convenience method to read a date, time or timestamp
|
public java.lang.Double | getDouble(int col)Convenience method to read a double
|
public java.lang.Float | getFloat(int col)Convenience method to read a float
|
public java.lang.Integer | getInteger(int col)Convenience method to read an integer
|
public java.util.Locale | getLocale(int col)Convenience method to read a locale
|
public java.lang.Long | getLong(int col)Convenience method to read a long
|
public int | getRowNumber()Get the current location in the result set. The first
row is number 0, contrary to JDBC.
|
public java.lang.Short | getShort(int col)Convenience method to read a short
|
public java.lang.String | getString(int col)Convenience method to read a string
|
public java.lang.String | getText(int col)Convenience method to read text
|
public java.util.TimeZone | getTimeZone(int col)Convenience method to read a timezone
|
public org.hibernate.type.Type | getType(int i)Get the type of the ith column of results
|
public boolean | isFirst()Is this the first result?
|
public boolean | isLast()Is this the last result?
|
public boolean | last()Go to the last result
|
public boolean | next()Advance to the next result
|
public boolean | previous()Retreat to the previous result
|
public boolean | scroll(int i)Scroll an arbitrary number of locations
|
public boolean | setRowNumber(int rowNumber)Set the current location in the result set, numbered from either the
first row (row number 0), or the last row (row
number -1).
|