Uses of Interface
org.hibernate.query.MutationQuery
Packages that use MutationQuery
Package
Description
This package defines the central Hibernate APIs, beginning with
SessionFactory, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session and StatelessSession,
the most important APIs exposing persistence-related operations for
entities.This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
Everything related to HQL/JPQL, native SQL, and criteria queries.
Support for SelectionSpecification
and MutationSpecification which
is similar in concept to criteria queries, but focused on ease-of-use and less verbosity.
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 MutationQuery in org.hibernate
Methods in org.hibernate that return MutationQueryModifier and TypeMethodDescriptionSharedSessionContract.createMutationQuery(CriteriaStatement<?> criteriaStatement) Create aMutationQueryfrom the given update criteria treeSharedSessionContract.createMutationQuery(String hqlString) Create aMutationQueryreference for the given HQL insert, update, or delete statement.SharedSessionContract.createMutationQuery(JpaCriteriaInsert<?> insert) Create aMutationQueryfrom the given insert criteria treeSharedSessionContract.createNamedMutationQuery(String name) Create aMutationQueryinstance for the given named insert, update, or delete HQL query.SharedSessionContract.createNamedStatement(String name) SharedSessionContract.createNativeMutationQuery(String sqlString) Create aNativeQueryinstance for the given native SQL statement.SharedSessionContract.createNativeStatement(String sql) Session.createQuery(CriteriaStatement<?> criteriaStatement) Deprecated.SharedSessionContract.createStatement(CriteriaStatement<?> criteriaStatement) SharedSessionContract.createStatement(StatementReference statementReference) SharedSessionContract.createStatement(String hqlString) -
Uses of MutationQuery in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return MutationQueryModifier and TypeMethodDescriptionSessionDelegatorBaseImpl.createMutationQuery(String statementString) SessionLazyDelegator.createMutationQuery(CriteriaStatement<?> criteriaStatement) SessionLazyDelegator.createMutationQuery(String hqlString) SessionLazyDelegator.createMutationQuery(JpaCriteriaInsert insert) SessionDelegatorBaseImpl.createNamedMutationQuery(String name) SessionLazyDelegator.createNamedMutationQuery(String name) SessionLazyDelegator.createNamedStatement(String name) SharedSessionDelegatorBaseImpl.createNamedStatement(String name) SessionDelegatorBaseImpl.createNativeMutationQuery(String sqlString) SessionLazyDelegator.createNativeMutationQuery(String sqlString) SessionLazyDelegator.createNativeStatement(String sql) SharedSessionDelegatorBaseImpl.createNativeStatement(String sql) SessionLazyDelegator.createQuery(CriteriaStatement<?> criteriaStatement) SessionLazyDelegator.createStatement(CriteriaStatement<?> criteriaStatement) SessionLazyDelegator.createStatement(StatementReference statementReference) SessionLazyDelegator.createStatement(String hqlString) -
Uses of MutationQuery in org.hibernate.query
Subinterfaces of MutationQuery in org.hibernate.queryModifier and TypeInterfaceDescriptioninterfaceNativeQuery<T>Within the context of an active session, an instance of this type represents an executable query written in the native SQL dialect of the underlying database.Methods in org.hibernate.query that return MutationQueryModifier and TypeMethodDescriptionCommonQueryContract.asMutationQuery()Casts this query as a mutation query.Query.asStatement()Covariant override of Query.asStatement().MutationQuery.setComment(String comment) <P> MutationQueryMutationQuery.setConvertedParameter(int position, P value, Class<? extends AttributeConverter<P, ?>> converter) <P> MutationQueryMutationQuery.setConvertedParameter(String name, P value, Class<? extends AttributeConverter<P, ?>> converter) MutationQuery.setFlushMode(FlushModeType flushMode) Deprecated.MutationQuery.setParameter(int position, Object value) MutationQuery.setParameter(int position, Instant value, TemporalType temporalType) Deprecated.MutationQuery.setParameter(int position, Calendar value, TemporalType temporalType) Deprecated.MutationQuery.setParameter(int position, Date value, TemporalType temporalType) Deprecated.<P> MutationQueryMutationQuery.setParameter(int position, P value, Type<P> type) <P> MutationQueryMutationQuery.setParameter(int position, P value, Class<P> type) MutationQuery.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) Deprecated.MutationQuery.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) Deprecated.<P> MutationQueryMutationQuery.setParameter(Parameter<P> param, P value) MutationQuery.setParameter(String name, Object value) MutationQuery.setParameter(String name, Instant value, TemporalType temporalType) Deprecated.MutationQuery.setParameter(String name, Calendar value, TemporalType temporalType) Deprecated.MutationQuery.setParameter(String name, Date value, TemporalType temporalType) Deprecated.<P> MutationQueryMutationQuery.setParameter(String name, P value, Type<P> type) <P> MutationQueryMutationQuery.setParameter(String name, P value, Class<P> type) <P> MutationQueryMutationQuery.setParameter(QueryParameter<P> parameter, P value) <P> MutationQueryMutationQuery.setParameter(QueryParameter<P> parameter, P val, Type<P> type) <P> MutationQueryMutationQuery.setParameter(QueryParameter<P> parameter, P value, Class<P> type) MutationQuery.setParameterList(int position, Object[] values) MutationQuery.setParameterList(int position, Collection values) <P> MutationQueryMutationQuery.setParameterList(int position, Collection<? extends P> values, Type<P> type) <P> MutationQueryMutationQuery.setParameterList(int position, Collection<? extends P> values, Class<P> javaType) <P> MutationQueryMutationQuery.setParameterList(int position, P[] values, Type<P> type) <P> MutationQueryMutationQuery.setParameterList(int position, P[] values, Class<P> javaType) MutationQuery.setParameterList(String name, Object[] values) MutationQuery.setParameterList(String name, Collection values) <P> MutationQueryMutationQuery.setParameterList(String name, Collection<? extends P> values, Type<P> type) <P> MutationQueryMutationQuery.setParameterList(String name, Collection<? extends P> values, Class<P> javaType) <P> MutationQueryMutationQuery.setParameterList(String name, P[] values, Type<P> type) <P> MutationQueryMutationQuery.setParameterList(String name, P[] values, Class<P> javaType) <P> MutationQueryMutationQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) <P> MutationQueryMutationQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Type<P> type) <P> MutationQueryMutationQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) <P> MutationQueryMutationQuery.setParameterList(QueryParameter<P> parameter, P[] values) <P> MutationQueryMutationQuery.setParameterList(QueryParameter<P> parameter, P[] values, Type<P> type) <P> MutationQueryMutationQuery.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) MutationQuery.setProperties(Object bean) MutationQuery.setProperties(Map bean) MutationQuery.setQueryFlushMode(QueryFlushMode queryFlushMode) MutationQuery.setTimeout(int timeout) MutationQuery.setTimeout(Timeout timeout) MutationQuery.setTimeout(Integer timeout) -
Uses of MutationQuery in org.hibernate.query.specification
Methods in org.hibernate.query.specification that return MutationQueryModifier and TypeMethodDescriptionDeleteSpecification.createQuery(Session session) DeleteSpecification.createQuery(StatelessSession session) MutationSpecification.createQuery(Session session) Finalize the building and create the MutationQuery instance.MutationSpecification.createQuery(StatelessSession session) Finalize the building and create the MutationQuery instance. -
Uses of MutationQuery in org.hibernate.query.spi
Subinterfaces of MutationQuery in org.hibernate.query.spi -
Uses of MutationQuery in org.hibernate.query.sql.spi
Subinterfaces of MutationQuery in org.hibernate.query.sql.spi