zoukankan      html  css  js  c++  java
  • 解决ExecuteReader requires the command to have a transaction when the connection assigned to the command is in a pending local transaction.

    ExecuteReader requires the command to have a transaction when the connection assigned to the command is in a pending local transaction.

    同一个connection,在update的command上启动了一个transaction,后面一个查询的command,没有设置transaction属性,所以出了这个exception.

    解决方法:

    将update的command加到select的command上去.

     

    SqlConnection conn = new SqlConnection("");
                SqlCommand updateCmd 
    = new SqlCommand("update", conn);
                updateCmd.Transaction 
    = conn.BeginTransaction();
                
    int rows = updateCmd.ExecuteNonQuery();

                SqlCommand selectCmd 
    = new SqlCommand("select ", conn);
                selectCmd.Transaction 
    = updateCmd.Transaction;//important

                SqlDataReader reader 
    = selectCmd.ExecuteReader();
                
    //.
  • 相关阅读:
    rzc generate exited with code -2147450730.
    c#WebService动态调用
    c#BarTender打印,打印微调
    记一次ios下h5页面图片显示问题
    FID
    RSA密钥对生成,并解析公钥指数和模数
    angularjs-6
    angularjs-5
    angularjs-4
    angularjs-4
  • 原文地址:https://www.cnblogs.com/rockniu/p/1197672.html
Copyright © 2011-2022 走看看