PROPERTY_HIBERNATE_CLEAR_CACHE Property specifying whether hibernate session cache should be cleared between two consecutive fetches when using pagination.
PROPERTY_HIBERNATE_FIELD_MAPPING_DESCRIPTIONS Property specifying whether field descriptions should be used to determine the mapping between the fields
and the query return values.
final public static String PROPERTY_HIBERNATE_FIELD_MAPPING_DESCRIPTIONS(Code)
Property specifying whether field descriptions should be used to determine the mapping between the fields
and the query return values.
PROPERTY_HIBERNATE_QUERY_LIST_PAGE_SIZE
final public static String PROPERTY_HIBERNATE_QUERY_LIST_PAGE_SIZE(Code)
Property specifying the number of result rows to be retrieved at once when the execution type is list.
Result pagination is implemented by org.hibernate.Query.setFirstResult() and org.hibernate.Query.setMaxResults().
By default, all the rows are retrieved (no result pagination is performed).
PROPERTY_HIBERNATE_QUERY_RUN_TYPE
final public static String PROPERTY_HIBERNATE_QUERY_RUN_TYPE(Code)
Property specifying the query execution type.
Possible values are:
list (default) - the query will be run by calling org.hibernate.Query.list()
iterate - the query will be run by calling org.hibernate.Query.iterate()
scroll - the query will be run by calling org.hibernate.Query.scroll()
QUERY_LANGUAGE_HQL
final public static String QUERY_LANGUAGE_HQL(Code)
HQL query language.
VALUE_HIBERNATE_QUERY_RUN_TYPE_ITERATE
final public static String VALUE_HIBERNATE_QUERY_RUN_TYPE_ITERATE(Code)