Class PreparedStatementPartForSubselect

  • All Implemented Interfaces:
    PreparedStatementPart

    public class PreparedStatementPartForSubselect
    extends Object
    implements PreparedStatementPart
    A PreparedStatementPart which encapsulates a subselect. The SQL and Replacements are not calculated immediately, but wait for the outer clause to be completed, as tables in the from clause which reference tables in the outer select are removed, and this can only be done when the outer query is known. This only works if the methofs getSqlAsString() and getPreparedStatementReplacements() are called after the outer query is calculated.
    Version:
    $Id: $
    • Constructor Detail

      • PreparedStatementPartForSubselect

        public PreparedStatementPartForSubselect​(Criteria toBuildFrom,
                                                 Query outerQuery)
        Constructor.
        Parameters:
        toBuildFrom - The criteria to build the subselect from.
        outerQuery - The outer query in which this subselect is embedded.
    • Method Detail

      • getPreparedStatementReplacements

        public List<Object> getPreparedStatementReplacements()
        Returns the list of prepared statement replacements. The implementation may or may not return a list which is modifiable and which may or may not, in case of modification, change the internal state of the surrounding PreparedStatementPart.
        Specified by:
        getPreparedStatementReplacements in interface PreparedStatementPart
        Returns:
        the list of prepared statement replacements, not null.