org.hibernate.dialect.Sybase11Dialect 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: Sybase11Dialect.java 3890 2004-06-03 16:31:32Z steveebersole $
package org.hibernate.dialect;
import org.hibernate.sql.JoinFragment;
import org.hibernate.sql.Sybase11JoinFragment;
/**
* A SQL dialect suitable for use with Sybase 11.9.2 (specifically: avoids ANSI JOIN syntax)
* @author Colm O' Flaherty
*/
public class Sybase11Dialect extends SybaseDialect {
public Sybase11Dialect() {
super();
}
public JoinFragment createOuterJoinFragment() {
return new Sybase11JoinFragment();
}
}