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

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

Introduction

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

Usage

From source file com.agroservices.hibernate.Dialect.java

/**
 *
 * @author User
 */
public class Dialect extends org.hibernate.dialect.H2Dialect {

From source file com.amalto.core.storage.hibernate.H2CustomDialect.java

public class H2CustomDialect extends H2Dialect {
    /**
     * Hibernate 3.5.6 forgot to map some JDBC types. This custom implementation adds them.
     */
    public H2CustomDialect() {
        registerColumnType(Types.BOOLEAN, "boolean"); //$NON-NLS-1$

From source file com.boyuanitsm.fort.domain.util.FixedH2Dialect.java

public class FixedH2Dialect extends H2Dialect {

    public FixedH2Dialect() {
        super();
        registerColumnType(Types.FLOAT, "double");
    }

From source file com.cloudera.jiragateway.ImprovedH2Dialect.java

public class ImprovedH2Dialect extends H2Dialect {
    @Override
    public String getDropSequenceString(String sequenceName) {
        // Adding the "if exists" clause to avoid warnings
        return "drop sequence if exists " + sequenceName;
    }

From source file com.devnexus.ting.core.hibernate.ImprovedH2Dialect.java

public class ImprovedH2Dialect extends H2Dialect {

    @Override
    public String getDropSequenceString(String sequenceName) {
        // Adding the "if exists" clause to avoid warnings
        return "drop sequence if exists " + sequenceName;

From source file com.frequentis.maritime.mcsr.domain.util.FixedH2Dialect.java

public class FixedH2Dialect extends H2Dialect {

    public FixedH2Dialect() {
        super();
        registerColumnType(Types.FLOAT, "real");
    }

From source file com.querydsl.jpa.support.QH2Dialect.java

/**
 * {@code QH2Dialect} extends {@code H2Dialect} with additional functions
 */
public class QH2Dialect extends H2Dialect {

    public QH2Dialect() {

From source file com.vmware.photon.controller.api.common.db.CustomH2Dialect.java

/**
 * Workaround for the issue that foreign references are being dropped even for an empty database.
 *
 * @see https://hibernate.atlassian.net/browse/HHH-7002
 */
public class CustomH2Dialect extends H2Dialect {

From source file de.tudarmstadt.ukp.lmf.hibernate.UBYH2Dialect.java

/**
 * Variant of the {@link H2Dialect} that treats LONGVARCHAR fields as 
 * VARCHAR(maxint). This is necessary since Hibernate's schema validator
 * fails for fields typed "text" otherwise.
 */
public class UBYH2Dialect extends H2Dialect {

From source file io.apiman.manager.api.jpa.ApimanH2Dialect.java

/**
 * A custom h2 dialect to work around https://hibernate.atlassian.net/browse/HHH-9693
 *
 * @author eric.wittmann@redhat.com
 */
public class ApimanH2Dialect extends H2Dialect {