首頁 > 資料庫 > mysql教程 > 如何解決「已經有一個開啟的 DataReader...」SQL 異常?

如何解決「已經有一個開啟的 DataReader...」SQL 異常?

Linda Hamilton
發布: 2024-12-04 19:54:11
原創
255 人瀏覽過

How to Resolve the

SQL 例外:「已經有一個與此連接關聯的開啟的DataReader,必須先關閉」

當DataReader 時發生此異常嘗試在同一連線上執行另一個SQL 命令時仍然開啟。以下是根據給定程式碼解決問題的方法:

在程式碼中,您使用 ExecuteReader() 方法開啟 DataReader,然後嘗試使用 ExecuteNonQuery() 執行另一個命令。這是不允許的,因為 DataReader 持有連接上的鎖。若要解決此問題,請在執行任何其他命令之前關閉 DataReader。

SQL = "Select * from tblProduct";

//Create Connection/Command/MySQLDataReader
MySqlConnection myConnection = new MySqlConnection(cf.GetConnectionString());
myConnection.Open();
MySqlCommand myCommand = new MySqlCommand(SQL, myConnection);
MySqlDataReader myReader = myCommand.ExecuteReader();
myCommand.Dispose();

if (myReader.HasRows)
{
    int i = 0;
    // Always call Read before accessing data.
    while (myReader.Read())
    {
        if (myReader["frProductid"].ToString() == "") //there is no productid exist for this item
        {
            strInsertSQL = "Insert Into tblProduct_temp (Productid) Values('this istest') ";
            MySqlCommand cmdInserttblProductFrance = new MySqlCommand(strInsertSQL, myConnection);
            
            // Close the DataReader before executing the new command
            myReader.Close();
            
            cmdInserttblProductFrance.ExecuteNonQuery(); // Now this will execute successfully
        }
    }
}
登入後複製

關閉 DataReader 後,您可以執行 cmdInserttblProductFrance 指令,而不會遇到「已經有一個與此連接關聯的開啟的 DataReader 必須先關閉」例外。

以上是如何解決「已經有一個開啟的 DataReader...」SQL 異常?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板