Example usage for org.hibernate.dialect DB2Dialect subclass-usage

List of usage examples for org.hibernate.dialect DB2Dialect subclass-usage

Introduction

In this page you can find the example usage for org.hibernate.dialect DB2Dialect subclass-usage.

Usage

From source file com.blazebit.persistence.testsuite.base.SaneDB2Dialect.java

public class SaneDB2Dialect extends DB2Dialect {

    @Override
    public String getSelectSequenceNextValString(String sequenceName) {
        return "next value for " + sequenceName;
    }

From source file com.liferay.portal.dao.orm.hibernate.DB2Dialect.java

/**
 * @author Shepherd Ching
 * @author Jian Cao
 */
public class DB2Dialect extends org.hibernate.dialect.DB2Dialect {

From source file com.manydesigns.portofino.database.dialects.DB2ZOSDialect.java

public class DB2ZOSDialect extends DB2Dialect {
    @Override
    public boolean supportsSequences() {
        return true;
    }

From source file com.vmware.sqlfire.hibernate.SQLFireDialectBase.java

public abstract class SQLFireDialectBase extends DB2Dialect {
    protected Logger LOG = Logger.getLogger("SQLFireDialect");
    protected boolean identityColumnStringIsAlways = true;

    /*
     * SQLFireDialectBase Constructor

From source file org.openbravo.base.session.OBDB2v97Dialect.java

/**
 * Extends the Oracle10Dialect to replace some java-oracle type mappings to support the current rdb
 * schema of OpenBravo. Is used in the {@link SessionFactoryController}.
 * 
 * @author mtaal
 */