org.hibernate.community.dialect.Ingres9Dialect Maven / Gradle / Ivy
/*
 * 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 .
 */
package org.hibernate.community.dialect;
import org.hibernate.dialect.DatabaseVersion;
/**
 * A SQL dialect for Ingres 9.3 and later versions.
 * 
 * Changes:
 * 
 * - Support for the SQL functions current_time, current_timestamp and current_date added
 
 * - Type mapping of 
Types.TIMESTAMP changed from "timestamp with time zone" to "timestamp(9) with time zone" 
 * - Improved handling of "SELECT...FOR UPDATE" statements
 
 * - Added support for pooled sequences
 
 * - Added support for SELECT queries with limit and offset
 
 * - Added getIdentitySelectString
 
 * - Modified concatination operator
 
 * 
 *
 * @author Enrico Schenk
 * @author Raymond Fan
 *
 * @deprecated use {@code IngresDialect(930)}
 */
@Deprecated
public class Ingres9Dialect extends IngresDialect {
	public Ingres9Dialect() {
		super( DatabaseVersion.make( 9, 3 ) );
	}
}
     © 2015 - 2025 Weber Informatics LLC | Privacy Policy