All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.query.package-info Maven / Gradle / Ivy

There is a newer version: 6.6.2.Final
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */

/**
 * Everything related to HQL/JPQL, native SQL, and criteria queries.
 * 

* The important interfaces {@link org.hibernate.query.SelectionQuery}, * {@link org.hibernate.query.MutationQuery}, {@link org.hibernate.query.Query}, * and {@link org.hibernate.query.NativeQuery} provide an API for executing * queries. Instances of these interfaces may be obtained from a * {@link org.hibernate.query.QueryProducer}, that is, from any * {@link org.hibernate.Session} or {@link org.hibernate.StatelessSession}. *

* Hibernate's extensions to the JPA criteria query API are defined in the * subpackage {@link org.hibernate.query.criteria}, with * {@link org.hibernate.query.criteria.HibernateCriteriaBuilder} as the * entry point. *

* Other subpackages contain SPIs and internal implementation details, * including the HQL parser and translator. */ package org.hibernate.query;





© 2015 - 2024 Weber Informatics LLC | Privacy Policy