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 ch.silviowangler.dox.hibernate.Mysql5InnoDBBitBooleanDialect.java

/**
 * @author Silvio Wangler
 * @since 0.1
 *        <p/>
 *        Workaround due to an issue https://hibernate.onjira.com/browse/HHH-6935
 *        Can possibly removed using Hibernate 4.3.x    

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

/**
 * @author Moritz Becker
 * @since 1.2.0
 */
public class SaneMySQLDialect extends MySQL5InnoDBDialect {

From source file com.clican.pluto.orm.dialect.MySQL5InnoDBDialectExt.java

public class MySQL5InnoDBDialectExt extends MySQL5InnoDBDialect implements DialectExtention {

    public String getModifyColumnString(Column column) {
        return "modify column";
    }

From source file com.evolveum.midpoint.repo.sql.util.MidPointMySQLDialect.java

/**
 * @author lazyman
 */
public class MidPointMySQLDialect extends MySQL5InnoDBDialect {

    public MidPointMySQLDialect() {

From source file com.jada.jpa.connection.CustomMySQLDialect.java

public class CustomMySQLDialect extends MySQL5InnoDBDialect {
    public CustomMySQLDialect() {
        super();
        registerFunction("date_add_interval",
                new SQLFunctionTemplate(Hibernate.DATE, "date_add(?1, INTERVAL ?2 ?3)"));
        registerFunction("to_date", new SQLFunctionTemplate(Hibernate.DATE, "str_to_date(?1, ?2)"));

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

/**
 * {@code QMySQL5InnoDBDialect} extends {@code MySQL5InnoDBDialect} with additional functions
 */
public class QMySQL5InnoDBDialect extends MySQL5InnoDBDialect {

    public QMySQL5InnoDBDialect() {

From source file com.wiiyaya.framework.provider.tools.hibernate.MySQL5InnoDBDialectPlus.java

/**
 * <p>Mysql</p>
 *
 * <p>??</p>
 *
 * <p>Hibernateregexp_like?Hibernateadd_minutes?</p>

From source file de.lemo.apps.services.internal.MysqlDialectUtf8.java

/**
 * Static String with SQL dialect 
 *
 */
public class MysqlDialectUtf8 extends MySQL5InnoDBDialect {

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

/**
 * This class resolves the issue of correct UTF-8 encoding when creating MySQL tables
 * with Hibernate SchemaExport-Tool.
 *  
 * @author Yevgen Chebotar
 *

From source file edu.cmu.cs.lti.discoursedb.configuration.DiscourseDBMysqlDialect.java

/**
 * Extends MySQL5InnoDBDialect, but uses UTF8 as the default charset
 * 
 * @author Oliver Ferschke
 */
public class DiscourseDBMysqlDialect extends MySQL5InnoDBDialect {