Package org.hibernate.dialect
Class MyISAMStorageEngine
- java.lang.Object
-
- org.hibernate.dialect.MyISAMStorageEngine
-
- All Implemented Interfaces:
MySQLStorageEngine
public class MyISAMStorageEngine extends Object implements MySQLStorageEngine
Represents the MyISAM storage engine.
-
-
Field Summary
Fields Modifier and Type Field Description static MySQLStorageEngine
INSTANCE
-
Constructor Summary
Constructors Constructor Description MyISAMStorageEngine()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
dropConstraints()
String
getTableTypeString(String engineKeyword)
boolean
hasSelfReferentialForeignKeyBug()
boolean
supportsCascadeDelete()
-
-
-
Field Detail
-
INSTANCE
public static final MySQLStorageEngine INSTANCE
-
-
Method Detail
-
supportsCascadeDelete
public boolean supportsCascadeDelete()
- Specified by:
supportsCascadeDelete
in interfaceMySQLStorageEngine
-
getTableTypeString
public String getTableTypeString(String engineKeyword)
- Specified by:
getTableTypeString
in interfaceMySQLStorageEngine
-
hasSelfReferentialForeignKeyBug
public boolean hasSelfReferentialForeignKeyBug()
- Specified by:
hasSelfReferentialForeignKeyBug
in interfaceMySQLStorageEngine
-
dropConstraints
public boolean dropConstraints()
- Specified by:
dropConstraints
in interfaceMySQLStorageEngine
-
-