C#.net mysql There is already an open datareader associated with this command引發的問題

來源:互聯網
上載者:User

標籤:span   return   遇到   並且   RoCE   定義   cat   .so   null   

【參考】There is already an open datareader associated with this command引發的問題

 

我在語句中並未使用 DataReader,未何也提示同樣的錯誤,這個DataReader隱藏在哪裡,我給大家在這裡指出來,由於本人研究的還不夠深入,只知道有一種方法的調用後會產生 DataReader,我想這也是絕大多數人遇到頭疼的問題。

     在使用資料庫更新或插入語句時,大家通常使用 SqlCommand 的 ExecuteNonQuery() 方法,並且前提是定義了一個公用的資料庫連接(如果每次查詢時都產生新串連的話不會存在這個問題,但那樣資料庫佔用的資源相對會高很多),在ExecuteNonQuery() 後,內部會產生一個空的 DataReader 對象,併當當前的資料庫連接關閉掉後,該 DataReader 才會釋放。因此在大家使用更新方法時,推薦使用 using 關鍵字,它作為語句,可以將它所定義範圍內的對象都釋放掉。

 

1、解決方案是在ConnectionString中加上一個參數“MultipleActiveResultSets”, 將其值設定為true。X

 

server=192.168.9.24;database=FLGL;user=sa;password=1231q2w34;MultipleActiveResultSets=true

 

2、串連未關閉。 串連的目前狀態為正在串連。√

 

using (FLGLConn = new SqlConnection(FLGLConnStr))
{
                SqlCommand cmd = new SqlCommand();
                DataSet ds = new DataSet();
                cmd.CommandType = CommandType.StoredProcedure;
                cmd.CommandText = procName;
                if (paramArray != null)
                    cmd.Parameters.AddRange(paramArray);
                try
                {
                    //用SqlDataAdapter 就不必寫conn.open()和conn.close(),這是多餘的。
                    cmd.Connection = FLGLConn;
                    SqlDataAdapter sda = new SqlDataAdapter(cmd);
                    sda.Fill(ds);
                }
                catch (Exception ex)
                {
                    Log.WriteErrorLog(ex.Message + ex.Source + " -- sql 語句為:" + procName);
                }
                finally
                {
                    FLGLConn.Close();
                }
                return ds;
}

C#.net mysql There is already an open datareader associated with this command引發的問題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.