Interface QueryTranslator

  • All Known Subinterfaces:
    FilterTranslator

    public interface QueryTranslator
    Defines the contract of an HQL->SQL translator.
    • Field Detail

      • ERROR_CANNOT_FETCH_WITH_ITERATE

        static final java.lang.String ERROR_CANNOT_FETCH_WITH_ITERATE
        See Also:
        Constant Field Values
      • ERROR_NAMED_PARAMETER_DOES_NOT_APPEAR

        static final java.lang.String ERROR_NAMED_PARAMETER_DOES_NOT_APPEAR
        See Also:
        Constant Field Values
      • ERROR_ORDINAL_PARAMETER_DOES_NOT_APPEAR

        static final java.lang.String ERROR_ORDINAL_PARAMETER_DOES_NOT_APPEAR
        See Also:
        Constant Field Values
      • ERROR_LEGACY_ORDINAL_PARAMS_NO_LONGER_SUPPORTED

        static final java.lang.String ERROR_LEGACY_ORDINAL_PARAMS_NO_LONGER_SUPPORTED
        See Also:
        Constant Field Values
      • ERROR_CANNOT_DETERMINE_TYPE

        static final java.lang.String ERROR_CANNOT_DETERMINE_TYPE
        See Also:
        Constant Field Values
      • ERROR_CANNOT_FORMAT_LITERAL

        static final java.lang.String ERROR_CANNOT_FORMAT_LITERAL
        See Also:
        Constant Field Values
    • Method Detail

      • compile

        void compile​(java.util.Map replacements,
                     boolean shallow)
              throws QueryException,
                     MappingException
        Compile a "normal" query. This method may be called multiple times. Subsequent invocations are no-ops.
        Parameters:
        replacements - Defined query substitutions.
        shallow - Does this represent a shallow (scalar or entity-id) select?
        Throws:
        QueryException - There was a problem parsing the query string.
        MappingException - There was a problem querying defined mappings.
      • iterate

        java.util.Iterator iterate​(QueryParameters queryParameters,
                                   EventSource session)
                            throws HibernateException
        Perform an iterate operation given the underlying query definition.
        Parameters:
        queryParameters - The query bind parameters.
        session - The session owning this query.
        Returns:
        An iterator over the query results.
        Throws:
        HibernateException
      • getQuerySpaces

        java.util.Set<java.io.Serializable> getQuerySpaces()
        Returns the set of query spaces (table names) that the query refers to.
        Returns:
        A set of query spaces (table names).
      • getQueryIdentifier

        java.lang.String getQueryIdentifier()
        Retrieve the query identifier for this translator. The query identifier is used in states collection.
        Returns:
        the identifier
      • getSQLString

        java.lang.String getSQLString()
        Returns the SQL string generated by the translator.
        Returns:
        the SQL string generated by the translator.
      • collectSqlStrings

        java.util.List<java.lang.String> collectSqlStrings()
      • getQueryString

        java.lang.String getQueryString()
        Returns the HQL string processed by the translator.
        Returns:
        the HQL string processed by the translator.
      • getEnabledFilters

        java.util.Map getEnabledFilters()
        Returns the filters enabled for this query translator.
        Returns:
        Filters enabled for this query execution.
      • getReturnTypes

        Type[] getReturnTypes()
        Returns an array of Types represented in the query result.
        Returns:
        Query return types.
      • getReturnAliases

        java.lang.String[] getReturnAliases()
        Returns an array of HQL aliases
      • getColumnNames

        java.lang.String[][] getColumnNames()
        Returns the column names in the generated SQL.
        Returns:
        the column names in the generated SQL.
      • getParameterTranslations

        ParameterTranslations getParameterTranslations()
        Return information about any parameters encountered during translation.
        Returns:
        The parameter information.
      • containsCollectionFetches

        boolean containsCollectionFetches()
        Does the translated query contain collection fetches?
        Returns:
        true if the query does contain collection fetched; false otherwise.
      • isManipulationStatement

        boolean isManipulationStatement()
      • isUpdateStatement

        default boolean isUpdateStatement()
      • getDynamicInstantiationResultType

        java.lang.Class getDynamicInstantiationResultType()