public interface GenOrmQueryResultSet<T extends GenOrmQueryRecord>
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
java.util.List<T> |
getArrayList()
Returns the result set as an array and cloases the result set
|
java.util.List<T> |
getArrayList(int maxRows)
Returns the result set as an array and cloases the result set
|
T |
getOnlyRecord() |
T |
getRecord() |
java.sql.ResultSet |
getResultSet() |
boolean |
next() |
void close()
java.util.List<T> getArrayList(int maxRows)
maxRows - if the result set contains more than the max
rows an exception is thrown.java.util.List<T> getArrayList()
java.sql.ResultSet getResultSet()
T getRecord()
T getOnlyRecord()
boolean next()