org.hibernate.community.dialect.Oracle10gDialect 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 dialect specifically for use with Oracle 10g.
 * 
 * The main difference between this dialect and
 * {@link Oracle9iDialect} is the use of
 * "ANSI join syntax".
 *
 * @author Steve Ebersole
 *
 * @deprecated use {@code OracleDialect(10)}
 */
@Deprecated
public class Oracle10gDialect extends OracleLegacyDialect {
	public Oracle10gDialect() {
		super( DatabaseVersion.make( 10 ) );
	}
}
     © 2015 - 2025 Weber Informatics LLC | Privacy Policy