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

org.hibernate.dialect.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 .
 */

/**
 * 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