List of usage examples for org.hibernate.dialect MySQLInnoDBDialect subclass-usage
From source file com.krawler.crm.exhibernate.ExMySQLInnoDBDialect.java
/** * * @author trainee */ public class ExMySQLInnoDBDialect extends org.hibernate.dialect.MySQLInnoDBDialect {
From source file com.krawler.esp.hibernate.impl.ExMySQLInnoDBDialect.java
/** * * @author krawler-user */ public class ExMySQLInnoDBDialect extends MySQLInnoDBDialect { public ExMySQLInnoDBDialect() {
From source file com.krawler.hql.payroll.ExHibernate.ExMySQLInnoDBDialect.java
public class ExMySQLInnoDBDialect extends org.hibernate.dialect.MySQLInnoDBDialect { public ExMySQLInnoDBDialect() { super(); registerColumnType(Types.LONGNVARCHAR, 65535, "text"); registerHibernateType(Types.LONGVARCHAR, Hibernate.TEXT.getName());
From source file gov.nih.nci.caarray.util.CaarrayInnoDBDialect.java
/**
* A hack: hibernate has a bug in parsing the Filter clauses with subselects where it unnecessarily prepends
* table qualifications to identifiers. To get around this, we need to use a special known value as the identifier
* and then tell hibernate that it's a keyword, thereby preventing it from qualifying it with the table name.
* @author dkokotov
*/
From source file net.cpollet.jixture.integration.mysql.MySQLInnoDBDialectFixed.java
/** * @author Christophe Pollet */ public class MySQLInnoDBDialectFixed extends MySQLInnoDBDialect { @Override public String getTableTypeString() {
From source file org.alfresco.repo.domain.hibernate.dialect.AlfrescoMariaDBDialect.java
/** * @author eknizat */ public class AlfrescoMariaDBDialect extends MySQLInnoDBDialect { public AlfrescoMariaDBDialect() { super();
From source file org.alfresco.repo.domain.hibernate.dialect.AlfrescoMySQLClusterNDBDialect.java
/**
* MySQL Cluster NDB specific DAO overrides
*
* WARNING:
* - Experimental only (unsupported) !
* - The NDB storage engine is *not* currently supported or certified !
From source file org.broadleafcommerce.common.util.sql.MySQLInnoDBDialect.java
/**
* This is a re-worked version from Hibernate core
*
* @author jfischer
*
*/
From source file org.j2free.jpa.J2FreeMySQLDialect.java
/** * @author Ryan Wilson */ public class J2FreeMySQLDialect extends MySQLInnoDBDialect { /**