Interface HibernateConstants


  • public interface HibernateConstants
    Author:
    Teodor Danciu (teodord@users.sourceforge.net)
    • Field Detail

      • PARAMETER_HIBERNATE_SESSION

        static final String PARAMETER_HIBERNATE_SESSION
        Built-in parameter holding the value of the Hibernate session to be used for creating the query.
        See Also:
        Constant Field Values
      • PROPERTY_HIBERNATE_QUERY_RUN_TYPE

        static final String PROPERTY_HIBERNATE_QUERY_RUN_TYPE
        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()
        See Also:
        Constant Field Values
      • PROPERTY_HIBERNATE_QUERY_LIST_PAGE_SIZE

        static final String PROPERTY_HIBERNATE_QUERY_LIST_PAGE_SIZE
        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).

        See Also:
        Constant Field Values
      • PROPERTY_HIBERNATE_CLEAR_CACHE

        static final String PROPERTY_HIBERNATE_CLEAR_CACHE
        Property specifying whether hibernate session cache should be cleared between two consecutive fetches when using pagination.

        By default, the cache cleanup is not performed.

        See Also:
        PROPERTY_HIBERNATE_QUERY_LIST_PAGE_SIZE, Constant Field Values
      • PROPERTY_HIBERNATE_FIELD_MAPPING_DESCRIPTIONS

        static final String 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.
        See Also:
        Constant Field Values