类 LobCreatorBuilderImpl
- java.lang.Object
-
- org.hibernate.engine.jdbc.env.internal.LobCreatorBuilderImpl
-
- 所有已实现的接口:
LobCreatorBuilder
public class LobCreatorBuilderImpl extends Object implements LobCreatorBuilder
BuildsLobCreatorinstances based on the capabilities of the environment.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 说明 LobCreatorbuildLobCreator(LobCreationContext lobCreationContext)Build a LobCreator using the given contextstatic LobCreatorBuilderImplmakeLobCreatorBuilder()For used when JDBC Connection is not available.static LobCreatorBuilderImplmakeLobCreatorBuilder(Dialect dialect, Map configValues, Connection jdbcConnection)The public factory method for obtaining the appropriate LOB creator (according to given JDBCConnection).
-
-
-
方法详细资料
-
makeLobCreatorBuilder
public static LobCreatorBuilderImpl makeLobCreatorBuilder(Dialect dialect, Map configValues, Connection jdbcConnection)
The public factory method for obtaining the appropriate LOB creator (according to given JDBCConnection).- 参数:
dialect- TheDialectin useconfigValues- The map of settingsjdbcConnection- A JDBCConnectionwhich can be used to gauge the drivers level of support, specifically for creating LOB references.
-
makeLobCreatorBuilder
public static LobCreatorBuilderImpl makeLobCreatorBuilder()
For used when JDBC Connection is not available.- 返回:
- Appropriate LobCreatorBuilder
-
buildLobCreator
public LobCreator buildLobCreator(LobCreationContext lobCreationContext)
Build a LobCreator using the given context- 指定者:
buildLobCreator在接口中LobCreatorBuilder- 参数:
lobCreationContext- The LOB creation context- 返回:
- The LobCreator
-
-