org.agileclick.genorm.runtime
Interface GenOrmResultSet


public interface GenOrmResultSet


Method Summary
 void close()
           
 java.util.ArrayList<? extends GenOrmRecord> getArrayList()
          Returns the result set as an array and cloases the result set
 java.util.ArrayList<? extends GenOrmRecord> getArrayList(int maxRows)
          Returns the result set as an array and cloases the result set
 GenOrmRecord getOnlyRecord()
           
 GenOrmRecord getRecord()
           
 java.sql.ResultSet getResultSet()
           
 boolean next()
           
 

Method Detail

close

void close()

getArrayList

java.util.ArrayList<? extends GenOrmRecord> getArrayList(int maxRows)
Returns the result set as an array and cloases the result set

Parameters:
maxRows - if the result set contains more than the max rows an exception is thrown.

getArrayList

java.util.ArrayList<? extends GenOrmRecord> getArrayList()
Returns the result set as an array and cloases the result set


getResultSet

java.sql.ResultSet getResultSet()

getRecord

GenOrmRecord getRecord()

getOnlyRecord

GenOrmRecord getOnlyRecord()

next

boolean next()