Creates the Hibernate query object.
If the value of the
JRHibernateQueryExecuterFactory.PARAMETER_HIBERNATE_FILTER_COLLECTION PARAMETER_HIBERNATE_FILTER_COLLECTION is not null, then a filter query is created using the value of the paramter as the collection.
Parameters: queryString - the query string
Runs the query by calling org.hibernate.Query.list().
All the result rows are returned.
the result of the query as a list
list
publicList list(int firstIndex, int resultCount)(Code)
Returns a page of the query results by calling org.hibernate.Query.iterate().
Parameters: firstIndex - the index of the first row to return Parameters: resultCount - the number of rows to return result row list