org.hibernate.dialect.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of beangle-hibernate-core Show documentation
Show all versions of beangle-hibernate-core Show documentation
Hibernate Orm Core Shade,Support Scala Collection
/*
* 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 .
*/
/**
* This package abstracts over the multifarious dialects of SQL
* understood by the databases supported by Hibernate. A concrete
* implementation of {@link org.hibernate.dialect.Dialect} defines
* the variant understood by a certain RDBMS.
*
* - An integrator may directly extend {@code Dialect} in order
* to provide support for a database unknown to Hibernate, or
*
- a program may extend one of the concrete {@code Dialect}s
* in this package in order to customize certain aspects of
* the SQL generated by Hibernate.
*
*
* A concrete {@code Dialect} may be explicitly selected using
* {@value org.hibernate.cfg.AvailableSettings#DIALECT}, but
* this is not usually necessary unless a program uses a custom
* implementation.
*
* @see org.hibernate.dialect.Dialect
*/
package org.hibernate.dialect;
© 2015 - 2024 Weber Informatics LLC | Privacy Policy