TransactionScope 如何判断连接是否已登记
我有一个将连接作为其参数之一的方法:
例如 Foo 中的 public void Foo(SqlConnection pConn) { }
是否可以确定 pConn 是否已列入任何事务范围?
I have a method that has a connection as one of it's parameters:
e.g. public void Foo(SqlConnection pConn) { }
within Foo is it possible to determine if pConn is enlisted in any transactionscope?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它的 sql server 发出 select @@trancount 将是一种方法
If its sql server issue a select @@trancount would be one way