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.wallride.autoconfigure.ExtendedMySQL5InnoDBDialect.java

public class ExtendedMySQL5InnoDBDialect extends MySQL5InnoDBDialect {

    public ExtendedMySQL5InnoDBDialect() {
        super();
        registerFunction("regexp", new SQLFunctionTemplate(StandardBasicTypes.BOOLEAN, "?1 REGEXP ?2"));
    }

From source file ru.appliedtech.storage.hibernate.MySQLInnoDBCaseSensitiveDialect.java

public class MySQLInnoDBCaseSensitiveDialect extends MySQL5InnoDBDialect {

    @Override
    public String getTableTypeString() {
        return super.getTableTypeString() + " COLLATE utf8_bin";
    }

From source file ru.mystamps.web.support.hibernate.MySql5InnoDbDialect.java

/**
 * Customized version of MySQL5InnoDBDialect.
 *
 * Allows to use {@code bit} type in database for {@code boolean} members.
 *
 * @see <a href="http://stackoverflow.com/q/8667965">Question at StackOverflow</a>

From source file uk.org.linuxgrotto.model.base.GalacticMySQLDialect.java

/**
 * Set engine to InnoDB (via inheritance) and charset to UTF8
 *
 * Created by jgroth on 29/09/15.
 */
public class GalacticMySQLDialect extends MySQL5InnoDBDialect {