This interface represents the result of a <sql:query> action. It provides access to the following information in the query result:
- The result rows (getRows() and getRowsByIndex())
- The column names (getColumnNames())
- The number of rows in the result (getRowCount())
- An indication whether the rows returned represent the complete result or just a subset that is limited by a maximum row setting (isLimitedByMaxRows())
An implementation of the Result interface provides a disconnected view into the result of a query.
@author Justyna Horwat