Uses of Interface
org.hibernate.query.sql.spi.NativeQueryImplementor
Packages that use NativeQueryImplementor
Package
Description
This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
Contains a range of internal abstractions for dealing with query execution,
query plans, query options, and query parameters.
SPIs for native SQL query support.
-
Uses of NativeQueryImplementor in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return NativeQueryImplementorModifier and TypeMethodDescriptionSessionDelegatorBaseImpl.createNativeQuery(String sqlString) SessionDelegatorBaseImpl.createNativeQuery(String sqlString, Class resultClass) <T> NativeQueryImplementor<T> SessionDelegatorBaseImpl.createNativeQuery(String sqlString, Class<T> resultClass, String tableAlias) SessionDelegatorBaseImpl.createNativeQuery(String sqlString, String resultSetMappingName) <T> NativeQueryImplementor<T> SessionDelegatorBaseImpl.createNativeQuery(String sqlString, String resultSetMappingName, Class<T> resultClass) SharedSessionDelegatorBaseImpl.createNativeQuery(String sqlString) SharedSessionDelegatorBaseImpl.createNativeQuery(String sqlString, Class resultClass) <T> NativeQueryImplementor<T> SharedSessionDelegatorBaseImpl.createNativeQuery(String sqlString, Class<T> resultClass, String tableAlias) SharedSessionDelegatorBaseImpl.createNativeQuery(String sqlString, String resultSetMappingName) <T> NativeQueryImplementor<T> SharedSessionDelegatorBaseImpl.createNativeQuery(String sqlString, String resultSetMappingName, Class<T> resultClass) SessionDelegatorBaseImpl.getNamedNativeQuery(String name) SessionDelegatorBaseImpl.getNamedNativeQuery(String name, String resultSetMapping) SharedSessionDelegatorBaseImpl.getNamedNativeQuery(String name) SharedSessionDelegatorBaseImpl.getNamedNativeQuery(String name, String resultSetMapping) -
Uses of NativeQueryImplementor in org.hibernate.query.spi
Methods in org.hibernate.query.spi that return NativeQueryImplementorModifier and TypeMethodDescriptionQueryProducerImplementor.createNativeQuery(String sqlString) Deprecated.<R> NativeQueryImplementor<R> QueryProducerImplementor.createNativeQuery(String sqlString, Class<R> resultClass) Deprecated, for removal: This API element is subject to removal in a future version.<R> NativeQueryImplementor<R> QueryProducerImplementor.createNativeQuery(String sqlString, Class<R> resultClass, String tableAlias) Deprecated, for removal: This API element is subject to removal in a future version.QueryProducerImplementor.createNativeQuery(String sqlString, String resultSetMappingName) Deprecated.<R> NativeQueryImplementor<R> QueryProducerImplementor.createNativeQuery(String sqlString, String resultSetMappingName, Class<R> resultClass) Deprecated, for removal: This API element is subject to removal in a future version.QueryProducerImplementor.getNamedNativeQuery(String name) Deprecated.QueryProducerImplementor.getNamedNativeQuery(String name, String resultSetMapping) Deprecated. -
Uses of NativeQueryImplementor in org.hibernate.query.sql.spi
Methods in org.hibernate.query.sql.spi that return NativeQueryImplementorModifier and TypeMethodDescriptionNativeQueryImplementor.addAttributeResult(String columnAlias, SingularAttribute attribute) NativeQueryImplementor.addAttributeResult(String columnAlias, Class entityJavaType, String attributePath) NativeQueryImplementor.addAttributeResult(String columnAlias, String entityName, String attributePath) NativeQueryImplementor.addQueryHint(String hint) <C> NativeQueryImplementor<R> NativeQueryImplementor.addScalar(String columnAlias, Class<C> relationalJavaType, AttributeConverter<?, C> converter) <C> NativeQueryImplementor<R> NativeQueryImplementor.addScalar(String columnAlias, Class<C> relationalJavaType, Class<? extends AttributeConverter<?, C>> converter) <O,J> NativeQueryImplementor <R> NativeQueryImplementor.addScalar(String columnAlias, Class<O> domainJavaType, Class<J> jdbcJavaType, AttributeConverter<O, J> converter) <O,J> NativeQueryImplementor <R> NativeQueryImplementor.addScalar(String columnAlias, Class<O> domainJavaType, Class<J> jdbcJavaType, Class<? extends AttributeConverter<O, J>> converter) NativeQueryImplementor.addScalar(String columnAlias, BasicDomainType type) NativeQueryImplementor.addSynchronizedEntityClass(Class entityClass) NativeQueryImplementor.addSynchronizedEntityName(String entityName) NativeQueryImplementor.addSynchronizedQuerySpace(String querySpace) NativeQueryImplementor.setCacheable(boolean cacheable) NativeQueryImplementor.setCacheMode(CacheMode cacheMode) NativeQueryImplementor.setCacheRegion(String cacheRegion) NativeQueryImplementor.setComment(String comment) NativeQueryImplementor.setFetchSize(int fetchSize) NativeQueryImplementor.setFirstResult(int startPosition) NativeQueryImplementor.setFlushMode(FlushModeType flushMode) Deprecated.NativeQueryImplementor.setHibernateFlushMode(FlushMode flushMode) Deprecated.NativeQueryImplementor.setHibernateLockMode(LockMode lockMode) NativeQueryImplementor.setLockMode(LockModeType lockMode) NativeQueryImplementor.setLockOptions(LockOptions lockOptions) Deprecated.NativeQueryImplementor.setMaxResults(int maxResults) NativeQueryImplementor.setParameter(int position, Object val) NativeQueryImplementor.setParameter(int position, Instant value, TemporalType temporalType) Deprecated.NativeQueryImplementor.setParameter(int position, Calendar value, TemporalType temporalType) Deprecated.NativeQueryImplementor.setParameter(int position, Date value, TemporalType temporalType) Deprecated.<P> NativeQueryImplementor<R> NativeQueryImplementor.setParameter(int position, P val, Type<P> type) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameter(int position, P val, Class<P> type) NativeQueryImplementor.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) Deprecated.NativeQueryImplementor.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) Deprecated.<P> NativeQueryImplementor<R> NativeQueryImplementor.setParameter(Parameter<P> param, P value) NativeQueryImplementor.setParameter(String name, Object val) NativeQueryImplementor.setParameter(String name, Instant value, TemporalType temporalType) Deprecated.NativeQueryImplementor.setParameter(String name, Calendar value, TemporalType temporalType) Deprecated.NativeQueryImplementor.setParameter(String name, Date value, TemporalType temporalType) Deprecated.<P> NativeQueryImplementor<R> NativeQueryImplementor.setParameter(String name, P val, Type<P> type) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameter(String name, P val, Class<P> type) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameter(QueryParameter<P> parameter, P val) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameter(QueryParameter<P> parameter, P val, Type<P> type) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameter(QueryParameter<P> parameter, P val, Class<P> type) NativeQueryImplementor.setParameterList(int position, Object[] values) NativeQueryImplementor.setParameterList(int position, Collection values) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameterList(int position, Collection<? extends P> values, Type<P> type) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameterList(int position, Collection<? extends P> values, Class<P> type) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameterList(int position, P[] values, Type<P> type) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameterList(int position, P[] values, Class<P> javaType) NativeQueryImplementor.setParameterList(String name, Object[] values) NativeQueryImplementor.setParameterList(String name, Collection values) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameterList(String name, Collection<? extends P> values, Type<P> type) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameterList(String name, Collection<? extends P> values, Class<P> type) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameterList(String name, P[] values, Type<P> type) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameterList(String name, P[] values, Class<P> type) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Type<P> type) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values, Type<P> type) <P> NativeQueryImplementor<R> NativeQueryImplementor.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) NativeQueryImplementor.setProperties(Object bean) NativeQueryImplementor.setProperties(Map bean) NativeQueryImplementor.setQueryFlushMode(QueryFlushMode queryFlushMode) NativeQueryImplementor.setReadOnly(boolean readOnly) NativeQueryImplementor.setResultListTransformer(ResultListTransformer<R> transformer) default <T> NativeQueryImplementor<T> NativeQueryImplementor.setResultTransformer(ResultTransformer<T> transformer) Deprecated.NativeQueryImplementor.setTimeout(int timeout) <T> NativeQueryImplementor<T> NativeQueryImplementor.setTupleTransformer(TupleTransformer<T> transformer) NamedNativeQueryMemento.toQuery(SharedSessionContractImplementor session) Convert the memento into an untyped executable query<T> NativeQueryImplementor<T> NamedNativeQueryMemento.toQuery(SharedSessionContractImplementor session, Class<T> resultType) Convert the memento into a typed executable query<T> NativeQueryImplementor<T> NamedNativeQueryMemento.toQuery(SharedSessionContractImplementor session, String resultSetMapping) Convert the memento into a typed executable query