List of usage examples for org.hibernate.dialect MySQL5InnoDBDialect subclass-usage
From source file org.jspresso.framework.model.persistence.hibernate.dialect.MySQL5InnoDBDialect.java
/** * Mysql5 InnoDB dialect. * * @author Vincent Vandenschrick */ public class MySQL5InnoDBDialect extends org.hibernate.dialect.MySQL5InnoDBDialect {
From source file org.obiba.magma.datasource.hibernate.cfg.MySQL5InnoDbUtf8Dialect.java
public class MySQL5InnoDbUtf8Dialect extends MySQL5InnoDBDialect { @Override public String getTableTypeString() { return super.getTableTypeString() + " DEFAULT CHARACTER SET utf8 COLLATE utf8_bin"; }
From source file org.opens.tanaguru.dialect.TanaguruMySQL5InnoDBDialect.java
/**
* Some entities are defined as mediumText. For any reason that type is ignored
* by the implementation of MySQL5Dialect. This class extends the MySQL5InnoDBDialect
* implementation to deal with the mediumtext sql type.
*
* @author jkowalczyk
From source file org.osaf.cosmo.hibernate.CosmoMySQL5InnoDBDialect.java
/**
* Overrides default MySQL5InnoDBDialect and uses
* decimal instead of numeric for numeric types.
* In MySQL5, numeric is implemented as decimal, so
* event though numberic works, it is the same as
* decimal and schema validation was failing because
From source file org.pentaho.platform.repository.hibernate.MySQL5InnoDBDialect.java
/** * @deprecated Use org.hibernate.dialect.MySQL5InnoDBDialect instead */ @Deprecated public class MySQL5InnoDBDialect extends org.hibernate.dialect.MySQL5InnoDBDialect {
From source file org.riotfamily.common.hibernate.support.MySQL5InnoDBBitBooleanDialect.java
public class MySQL5InnoDBBitBooleanDialect extends MySQL5InnoDBDialect { public MySQL5InnoDBBitBooleanDialect() { super(); registerColumnType(java.sql.Types.BOOLEAN, "bit"); }
From source file org.smallmind.persistence.orm.hibernate.MySQL5InnoDBDialect.java
public class MySQL5InnoDBDialect extends org.hibernate.dialect.MySQL5InnoDBDialect { public MySQL5InnoDBDialect() { super();
From source file org.tanaguru.dialect.TanaguruMySQL5InnoDBDialect.java
/**
* Some entities are defined as mediumText. For any reason that type is ignored
* by the implementation of MySQL5Dialect. This class extends the MySQL5InnoDBDialect
* implementation to deal with the mediumtext sql type.
*
* @author jkowalczyk
From source file org.unitedinternet.cosmo.hibernate.CosmoMySQL5InnoDBDialect.java
/**
* Overrides default MySQL5InnoDBDialect and uses
* decimal instead of numeric for numeric types.
* In MySQL5, numeric is implemented as decimal, so
* event though numberic works, it is the same as
* decimal and schema validation was failing because
From source file org.usip.osp.persistence.CharsetUTFDialect.java
public class CharsetUTFDialect extends MySQL5InnoDBDialect { public String getTableTypeString() { return " ENGINE=InnoDB DEFAULT CHARSET=utf8"; }