All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.dialect.MySQL5InnoDBDialect Maven / Gradle / Ivy

There is a newer version: 3.6.0.Beta2
Show newest version
//$Id:  $
package org.hibernate.dialect;

/**
 * @author Gavin King, Scott Marlow
 */
public class MySQL5InnoDBDialect extends MySQL5Dialect {

	public boolean supportsCascadeDelete() {
		return true;
	}

	public String getTableTypeString() {
		return " ENGINE=InnoDB";
	}

	public boolean hasSelfReferentialForeignKeyBug() {
		return true;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy