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

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

Introduction

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

Usage

From source file br.ufpa.linc.xflow.data.database.XFlowMySqlDialect.java

public final class XFlowMySqlDialect extends MySQLDialect {

    public XFlowMySqlDialect() {
        super();
        registerFunction("variance", new StandardSQLFunction("variance", StandardBasicTypes.DOUBLE));
        registerFunction("stddev", new StandardSQLFunction("stddev", StandardBasicTypes.DOUBLE));

From source file com.ms.dao.CustomeDialect.java

public class CustomeDialect extends MySQLDialect {
    /**
     * 
     */
    public CustomeDialect() {
        registerFunction("group_concat", new StandardSQLFunction("group_concat", Hibernate.STRING));

From source file com.pkrete.locationservice.admin.util.CustomMySQLDialect.java

/**
 * The <code>CustomMySQLDialect</code> class extends the MySQLDialect class.
 *
 * This class overrides the getTableTypeString method of the MySQLDialect class.
 * The purpose of this is to set the character set to utf8 when the tables are
 * created.

From source file com.sdm.core.hibernate.SundewMySQLDialect.java

/**
 *
 * @author Htoonlin
 */
public class SundewMySQLDialect extends MySQLDialect {

From source file edu.emory.library.tast.db.TastMySQLDialect.java

public class TastMySQLDialect extends MySQLDialect {

    public TastMySQLDialect() {
        super();

        // This is just a temporary version for performance evaluations. The

From source file hjb4u.database.NoBitsMySQLDialect.java

/**
 * <code>BoolMySQLDialect</code>
 * Date: Aug 21, 2009
 * Time: 12:35:04 AM
 *
 * @author Nigel B

From source file io.cloudslang.engine.dialects.ScoreMySQLDialect.java

/**
 * Created with IntelliJ IDEA.
 * User: kravtsov
 * Date: 22/07/14
 * Time: 11:54
 */

From source file org.jmangos.world.persistence.MySQLDialect.java

/**
 * @author MinimaJack
 * 
 */
public class MySQLDialect extends org.hibernate.dialect.MySQLDialect {

From source file org.mitre.mpf.wfm.data.EnhancedMySQLDialect.java

public class EnhancedMySQLDialect extends MySQLDialect {
    public EnhancedMySQLDialect() {
        super();
        registerColumnType(Types.TIMESTAMP, 6, "datetime($l)");
    }
}

From source file org.mskcc.cbio.oncokb.util.UTF8MySQLDialect.java

/**
 *
 * @author jgao
 */
public class UTF8MySQLDialect extends MySQLDialect {
    @Override