接口 DialectResolver
-
- 所有超级接口:
Serializable,Service
public interface DialectResolver extends Service
Contract for determining theDialectto use based on information about the database / driver.- 作者:
- Tomoto Shimizu Washio, Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 DialectresolveDialect(DialectResolutionInfo info)Determine theDialectto use based on the given information.
-
-
-
方法详细资料
-
resolveDialect
Dialect resolveDialect(DialectResolutionInfo info)
Determine theDialectto use based on the given information. Implementations are expected to return theDialectinstance to use, ornullif the they did not locate a match.- 参数:
info- Access to the information about the database/driver needed to perform the resolution- 返回:
- The dialect to use, or null.
-
-