Uses of Class
org.hibernate.QueryException
Packages that use QueryException
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 abstracts persistence mechanisms for entities.
Everything related to HQL/JPQL, native SQL, and criteria queries.
Implementation of the SPIs for native SQL query support.
This package defines a semantic model of HQL queries.
Package defining support for
SqmFunctionDescriptor
handling.This package contains helper classes for rendering SQL fragments and SQL statements.
-
Uses of QueryException in org.hibernate
Subclasses of QueryException in org.hibernateModifier and TypeClassDescriptionclass
Indicates a problem with the runtime arguments bound to query parameters. -
Uses of QueryException in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that throw QueryException -
Uses of QueryException in org.hibernate.query
Subclasses of QueryException in org.hibernate.queryModifier and TypeClassDescriptionclass
Indicates an attempt to callQueryProducer.createMutationQuery(String)
,QueryProducer.createNamedMutationQuery(String)
orQueryProducer.createNativeMutationQuery(String)
with a non-mutation query (generally a select query)class
Indicates a named-query has specified options that are not legalclass
Thrown when an operation of theQuery
interface is called which is unsupported due to the nature of the query itself.class
Indicates an attempt to callQueryProducer.createSelectionQuery(String)
with a non-selection query (generally a mutation query)class
Indicates that validation and translation of one or more named queries failed at initialization time.class
Indicates an attempt to use a non-indexed collection as indexed.class
Indicates a problem with the labelling of query parameters.class
Indicates a problem with a path expression in HQL/JPQL.class
Represents an error in the semantics (meaning) of a HQL/JPQL query.class
Represents a syntax error in a HQL/JPQL query.class
Occurs when a named query is requested, and there is no known HQL or native SQL query registered under the given name. -
Uses of QueryException in org.hibernate.query.sql.internal
Methods in org.hibernate.query.sql.internal that throw QueryExceptionModifier and TypeMethodDescriptionstatic void
ParameterParser.parse
(String sqlString, ParameterRecognizer recognizer) static void
ParameterParser.parse
(String sqlString, ParameterRecognizer recognizer, boolean nativeJdbcParametersIgnored) Performs the actual parsing and tokenizing of the query string making appropriate callbacks to the given recognizer upon recognition of the various tokens.protected String
SQLQueryParser.substituteBrackets
(String sqlQuery) -
Uses of QueryException in org.hibernate.query.sqm
Subclasses of QueryException in org.hibernate.query.sqmModifier and TypeClassDescriptionclass
Occurs when the HQL query declares a duplicate identification variable in thefrom
clause, or a duplicate result column alias in theselect
clause.class
Represents a generic unhandled problem which occurred while translating HQL/JPQL.class
class
Occurs when an unexpected condition is encountered while interpreting the output of the HQL parser.class
Indicates violations of strict JPQL syntax while strict JPQL syntax checking was enabled.class
Indicates a failure to resolve an entity name in HQL to a known mapped entity type.class
Indicates a failure to resolve an element of a path expression in HQL/JPQL. -
Uses of QueryException in org.hibernate.query.sqm.produce.function
Subclasses of QueryException in org.hibernate.query.sqm.produce.functionModifier and TypeClassDescriptionclass
Represents a problem with the argument list of a function in HQL/JPQL. -
Uses of QueryException in org.hibernate.sql
Constructors in org.hibernate.sql that throw QueryExceptionModifierConstructorDescriptionForUpdateFragment
(Dialect dialect, LockOptions lockOptions, Map<String, String[]> keyColumnNames)