类 NativeQueryInterpreterStandardImpl
- java.lang.Object
-
- org.hibernate.engine.query.internal.NativeQueryInterpreterStandardImpl
-
- 所有已实现的接口:
Serializable,NativeQueryInterpreter,Service
public class NativeQueryInterpreterStandardImpl extends Object implements NativeQueryInterpreter
- 作者:
- Steve Ebersole
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 NativeQueryInterpreterStandardImpl(SessionFactoryImplementor sessionFactory)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 NativeSQLQueryPlancreateQueryPlan(NativeSQLQuerySpecification specification, SessionFactoryImplementor sessionFactory)Creates a new query plan for the specified native query.ParameterMetadataImplgetParameterMetadata(String nativeQuery)Returns a meta-data object with information about the named and ordinal parameters contained in the given native query.-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 org.hibernate.engine.query.spi.NativeQueryInterpreter
createCustomLoader
-
-
-
-
构造器详细资料
-
NativeQueryInterpreterStandardImpl
public NativeQueryInterpreterStandardImpl(SessionFactoryImplementor sessionFactory)
-
-
方法详细资料
-
getParameterMetadata
public ParameterMetadataImpl getParameterMetadata(String nativeQuery)
从接口复制的说明:NativeQueryInterpreterReturns a meta-data object with information about the named and ordinal parameters contained in the given native query.- 指定者:
getParameterMetadata在接口中NativeQueryInterpreter- 参数:
nativeQuery- the native query to analyze.- 返回:
- a meta-data object describing the parameters of the given query.
Must not be
null.
-
createQueryPlan
public NativeSQLQueryPlan createQueryPlan(NativeSQLQuerySpecification specification, SessionFactoryImplementor sessionFactory)
从接口复制的说明:NativeQueryInterpreterCreates a new query plan for the specified native query.- 指定者:
createQueryPlan在接口中NativeQueryInterpreter- 参数:
specification- Describes the query to create a plan forsessionFactory- The current session factory- 返回:
- A query plan for the specified native query.
-
-