接口 LogicalConnection
-
- 所有已知子接口:
LogicalConnectionImplementor
- 所有已知实现类:
AbstractLogicalConnectionImplementor,LogicalConnectionManagedImpl,LogicalConnectionProvidedImpl
public interface LogicalConnectionModels the logical notion of a JDBC Connection. We may release/re-acquire physical JDBC connections under the covers, but this logically represents the overall access to the JDBC Connection.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 Connectionclose()Closes the JdbcSession, making it inactive and forcing release of any held resourcesResourceRegistrygetResourceRegistry()Provides access to the registry of JDBC resources associated with this LogicalConnection.booleanisOpen()Is this (logical) JDBC Connection still open/active.booleanisPhysicallyConnected()Is this JdbcSession currently physically connected (meaning does it currently hold a JDBC Connection)?
-
-
-
方法详细资料
-
isOpen
boolean isOpen()
Is this (logical) JDBC Connection still open/active. In other words, hasclose()not been called yet?
-
close
Connection close()
Closes the JdbcSession, making it inactive and forcing release of any held resources- 返回:
- Legacy :( Returns the JDBC Connection *if* the user passed in a Connection originally.
-
isPhysicallyConnected
boolean isPhysicallyConnected()
Is this JdbcSession currently physically connected (meaning does it currently hold a JDBC Connection)?- 返回:
trueif the JdbcSession currently hold a JDBC Connection;falseif it does not.
-
getResourceRegistry
ResourceRegistry getResourceRegistry()
Provides access to the registry of JDBC resources associated with this LogicalConnection.- 返回:
- The JDBC resource registry.
- 抛出:
ResourceClosedException- if the LogicalConnection is closed
-
-