Package org.teiid.translator
Interface ResultSetExecution
-
- All Superinterfaces:
Execution
- All Known Subinterfaces:
ProcedureExecution
public interface ResultSetExecution extends Execution
Defines an execution forQueryExpressions andCalls that returns a resultset, which is represented through the iterator methodnext().
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<?>next()Retrieves the next row of the resultset.
-
-
-
Method Detail
-
next
List<?> next() throws TranslatorException, DataNotAvailableException
Retrieves the next row of the resultset.- Returns:
- the next row or null indicating that there are no more results
- Throws:
TranslatorExceptionDataNotAvailableException
-
-