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 org.dcm4chee.arr.dialect.PatchedMySQL5InnoDBDialect.java

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

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

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

From source file org.dcm4chee.xds2.persistence.dialect.PatchedMySQL5InnoDBDialect.java

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

From source file org.dcm4chee.xds2.repository.persistence.dialect.PatchedMySQL5InnoDBDialect.java

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

From source file org.emau.icmvc.ganimed.epix.core.persistence.UTF8Mysql5InnoDBDialect.java

public class UTF8Mysql5InnoDBDialect extends MySQL5InnoDBDialect {

    public UTF8Mysql5InnoDBDialect() {
        super();
        // workaround fuer https://hibernate.atlassian.net/browse/HHH-6935
        registerColumnType(java.sql.Types.BOOLEAN, "bit");

From source file org.eulerframework.web.core.extend.MySQL5InnoDBUTF8Dialect.java

public class MySQL5InnoDBUTF8Dialect extends MySQL5InnoDBDialect {

    @Override
    public String getTableTypeString() {
        return " ENGINE=InnoDB DEFAULT CHARSET=utf8";
    }

From source file org.hyperic.hibernate.dialect.MySQL5InnoDBDialect.java

/**
 * HQ's version of MySQL5InnoDBDialect to create pseudo sequences.
 * 
 * This class must be public for Hibernate to access it.
 */
public class MySQL5InnoDBDialect extends org.hibernate.dialect.MySQL5InnoDBDialect implements HQDialect {

From source file org.jasig.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.jboss.seam.wiki.util.WikiMySQL5HibernateDialect.java

/**
 * Fix the broken Hibernate defaults for MySQL databases with UTF-8 encoding.
 *
 * @author Christian Bauer
 */
public class WikiMySQL5HibernateDialect extends MySQL5InnoDBDialect {

From source file org.jbpm.db.hibernate.MySQLDialect.java

/**
 * Small variation of the default MySQL InnoDB dialect meant for a smoother
 * experience with that database. Foreign key addition statements generated by
 * this dialect do not add an index at the same time, thus preventing duplicate
 * index creation.
 *