.net – 在transactionscope中打开sql连接很重要

前端之家收集整理的这篇文章主要介绍了.net – 在transactionscope中打开sql连接很重要前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我创建了一个sqlconnection,CN1.然后打开CN1.稍后在代码中有一个transactioncope.如果我在这个CN1连接上执行sql命令,这是在事务中吗?

代码看起来像这样;

sqlConnection cn1 = new sqlConnection();
cn1.Open(); //connection opened when there is no ambient transaction.
...

using(TransactionScope scope = new TransactionScope())
{
  sqlCommand cmd; //a typical sql command.

  ...

  cmd.ExecuteNonQuery(); //Is this command within transaction?
  ...
}

解决方法

务必在TransactionScope中打开连接,以确保连接在事务中注册.

这可以在连接上方的注释中找到.在this MSDN示例中打开.

原文链接:https://www.f2er.com/mssql/77412.html

猜你在找的MsSQL相关文章