Uses of Package
org.hibernate.dialect

Packages that use org.hibernate.dialect
Package
Description
Annotations used to drive annotation processors: @Find is used to generate finder methods using the Metamodel Generator, @HQL and @SQL are used to generate query methods using the Metamodel Generator, and CheckHQL instructs the Query Validator to check all HQL queries in the annotated package or type.
This package defines the boot-time metamodel, which is an interpretation of the domain model (entity classes, embeddable classes, and attributes) and the mapping of these "domain model parts" to the database.
This API allows intervention by generic code in the process of determining the names of database objects (tables, columns, and constraints).
Some SPIs related to DDL generation and schema management.
A range of SPIs allowing integration with—and customization of—the process of building metadata.
This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.
Support for Dialect-specific aggregate column types, including user-defined composite types, and JSON or XML types.
Contains implementations of SqmFunctionDescriptor describing a range of relatively-sophisticated SQL functions available in various dialects.
Support for Dialect-specific identity column handling.
Support for Dialect-specific pagination strategies.
Support for temporary tables.
Support for Dialect-specific unique constraint definition.
Contracts supporting Dialect resolution (from JDBC metadata) and Dialect building.
 
SPI contracts supporting various aspects of JDBC interaction.
This package defines an abstraction over all kinds of automatic value generation, including id generation and version number generation.
Contains a framework of strategies for efficient retrieval of database-generated values.
This package and its subpackages, especially org.hibernate.id.enhanced, contain the built-in id generators, all of which implement either IdentifierGenerator or PostInsertIdentifierGenerator.
Enhanced/improved versions of table and sequence based identifier generators targeting portability and unified configuration.
Defines a service for creating id generators.
Contains a framework of strategies for retrieving database-generated ids.
This package defines the Hibernate configuration-time mapping model.
An SPI supporting custom instantiation of entity instances and embeddable objects.
This package abstracts persistence mechanisms for collections.
Defines support for performing mutation operations originating from persistence-context events.
Everything related to HQL/JPQL, native SQL, and criteria queries.
This package defines a semantic model of HQL queries.
An SPI for defining, registering, and rendering functions in HQL.
Package for the translation of SQM into SQL AST
This package contains helper classes for rendering SQL fragments and SQL statements.
Package defining support for creating and consuming a SQL AST.
An SPI for tooling related to DDL generation, export, migration, and validation.
Most contracts here have been replaced by the new runtime mapping model.
A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types.
Contracts for reading and writing values to and from JDBC.
Integrates a range of types defined by the JDK with the type system of Hibernate.
 
Defines handling of almost the full range of standard JDBC-defined SQL data types.
Defines a registry for DdlTypes.
An API for user-defined custom types which extend the set of built-in types defined in org.hibernate.type.