Package org.hibernate.query.sql.internal
Class NativeSelectQueryPlanImpl<R>
- java.lang.Object
-
- org.hibernate.query.sql.internal.NativeSelectQueryPlanImpl<R>
-
- All Implemented Interfaces:
QueryPlan
,SelectQueryPlan<R>
,NativeQueryPlan
,NativeSelectQueryPlan<R>
public class NativeSelectQueryPlanImpl<R> extends Object implements NativeSelectQueryPlan<R>
-
-
Constructor Summary
Constructors Constructor Description NativeSelectQueryPlanImpl(String sql, Set<String> affectedTableNames, List<ParameterOccurrence> parameterList, ResultSetMapping resultSetMapping, SessionFactoryImplementor sessionFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<R>
performList(DomainQueryExecutionContext executionContext)
Perform (execute) the query returning a ListScrollableResultsImplementor<R>
performScroll(ScrollMode scrollMode, DomainQueryExecutionContext executionContext)
Perform (execute) the query returning a ScrollableResults
-
-
-
Constructor Detail
-
NativeSelectQueryPlanImpl
public NativeSelectQueryPlanImpl(String sql, Set<String> affectedTableNames, List<ParameterOccurrence> parameterList, ResultSetMapping resultSetMapping, SessionFactoryImplementor sessionFactory)
-
-
Method Detail
-
performList
public List<R> performList(DomainQueryExecutionContext executionContext)
Description copied from interface:SelectQueryPlan
Perform (execute) the query returning a List- Specified by:
performList
in interfaceSelectQueryPlan<R>
-
performScroll
public ScrollableResultsImplementor<R> performScroll(ScrollMode scrollMode, DomainQueryExecutionContext executionContext)
Description copied from interface:SelectQueryPlan
Perform (execute) the query returning a ScrollableResults- Specified by:
performScroll
in interfaceSelectQueryPlan<R>
-
-