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

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

Introduction

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

Usage

From source file eu.ggnet.dwoss.util.persistence.MysqlHibernate3Dialect.java

/**
 * This is a Workaround for https://hibernate.onjira.com/browse/HHH-6935 .
 *
 * @author oliver.guenther
 */
public class MysqlHibernate3Dialect extends MySQL5InnoDBDialect {

From source file eu.planets_project.pp.plato.util.PlatoMySQL5InnoDBDialect.java

public class PlatoMySQL5InnoDBDialect extends MySQL5InnoDBDialect {
    public PlatoMySQL5InnoDBDialect() {
        super();
    }

    public boolean supportsCascadeDelete() {

From source file hjb4u.database.NoBitsMySQL5InnoDBDialect.java

/**
 * <code>NoBitsMySQL5InnoDBDialect</code>
 * Date: Jan 7, 2010
 * Time: 1:30:10 PM
 *
 * @author Nigel B

From source file net.derquinse.common.orm.hib.dialect.DerquinseMySQL5InnoDBDialect.java

/**
 * MySQL 5 InnoDB Dialect.
 * @author Andres Rodriguez
 */
public class DerquinseMySQL5InnoDBDialect extends MySQL5InnoDBDialect {

From source file org.apereo.portal.utils.hibernate3.dialects.MySQL5InnoDBCompressedDialect.java

/** Uses the COMPRESSED row format in an InnoDB engine, needed for long index support with UTF-8 */
public class MySQL5InnoDBCompressedDialect extends MySQL5InnoDBDialect {

    public MySQL5InnoDBCompressedDialect() {
        super();
    }

From source file org.apereo.portal.utils.hibernate4.dialects.MySQL5InnoDBCompressedDialect.java

/** Uses the COMPRESSED row format in an InnoDB engine, needed for long index support with UTF-8 */
public class MySQL5InnoDBCompressedDialect extends MySQL5InnoDBDialect {

    public MySQL5InnoDBCompressedDialect() {
        super();
    }

From source file org.apereo.portal.utils.MySQL5InnoDBCompressedDialect.java

/**
 * Uses the COMPRESSED row format in an InnoDB engine, needed for long index support with UTF-8
 *
 * @author Raymond Bourges
 */
public class MySQL5InnoDBCompressedDialect extends MySQL5InnoDBDialect {

From source file org.asqatasun.dialect.AsqatasunMySQL5InnoDBDialect.java

/**
 * Some entities are defined as mediumText. For any reason that type is ignored
 * by the implementation of MySQL5Dialect. This class extends the MySQL5InnoDBDialect
 * implementation to deal with the mediumtext sql type.
 *
 * @author jkowalczyk

From source file org.broadleafcommerce.common.dialect.Broadleaf2CompatibilityMySQL5InnoDBDialect.java

/**
 * Intended to allow installations migrating from BLC version 2.0 to not be forced to make a schema
 * change for boolean fields when migrating to BLC version 3.0, and above.
 *
 * @deprecated use org.hibernate.dialect.MySQL5InnoDBDialect instead
 * @author Jeff Fischer

From source file org.dcm4chee.archive.entity.dialect.PatchedMySQL5InnoDBDialect.java

/**
 * @author Torsten Krah
 * @see https://hibernate.onjira.com/browse/HHH-6935
 *
 */
public class PatchedMySQL5InnoDBDialect extends MySQL5InnoDBDialect {