接口 AuxiliaryDatabaseObject
-
- 所有超级接口:
RelationalModel,Serializable
public interface AuxiliaryDatabaseObject extends RelationalModel, Serializable
Auxiliary database objects (i.e., triggers, stored procedures, etc) defined in the mappings. Allows Hibernate to manage their lifecycle as part of creating/dropping the schema.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voidaddDialectScope(String dialectName)Add the given dialect name to the scope of dialects to which this database object applies.booleanappliesToDialect(Dialect dialect)Does this database object apply to the given dialect?-
从接口继承的方法 org.hibernate.mapping.RelationalModel
sqlCreateString, sqlDropString
-
-
-
-
方法详细资料
-
addDialectScope
void addDialectScope(String dialectName)
Add the given dialect name to the scope of dialects to which this database object applies.- 参数:
dialectName- The name of a dialect.
-
appliesToDialect
boolean appliesToDialect(Dialect dialect)
Does this database object apply to the given dialect?- 参数:
dialect- The dialect to check against.- 返回:
- True if this database object does apply to the given dialect.
-
-