org.hibernate.dialect.Oracle10gDialect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
//$Id: Oracle10gDialect.java 11659 2007-06-08 17:52:19Z [email protected] $
package org.hibernate.dialect;
import org.hibernate.sql.JoinFragment;
import org.hibernate.sql.ANSIJoinFragment;
/**
* A dialect specifically for use with Oracle 10g.
*
* The main difference between this dialect and {@link Oracle9iDialect}
* is the use of "ANSI join syntax" here...
*
* @author Steve Ebersole
*/
public class Oracle10gDialect extends Oracle9iDialect {
public Oracle10gDialect() {
super();
}
public JoinFragment createOuterJoinFragment() {
return new ANSIJoinFragment();
}
}