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中文網其他相關文章!