public interface XAConnection extends PooledConnection
XAConnection
对象可以在分布式事务由一个来征XAResource
对象。
事务管理器,通常是中间层服务器的一部分,通过XAConnection
对象来管理一个XAResource
对象。
应用程序员不直接使用此接口; 相反,它由在中间层服务器中工作的事务管理器使用。
Modifier and Type | Method and Description |
---|---|
XAResource |
getXAResource()
检索一个
XAResource 对象,事务管理器将使用管理这个
XAConnection 在分布式事务对象的参与。
|
addConnectionEventListener, addStatementEventListener, close, getConnection, removeConnectionEventListener, removeStatementEventListener
XAResource getXAResource() throws SQLException
XAResource
对象,事务管理器将使用管理这个
XAConnection
在分布式事务对象的参与。
XAResource
对象
SQLException
- 如果发生数据库访问错误
SQLFeatureNotSupportedException
- 如果JDBC驱动程序不支持此方法
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.