我有下面的代码,我越来越异常:


  已经有一个与此DataReader关联的打开的Connection,必须首先关闭。


我为此项目使用Visual Studio 2010 / .Net 4.0和MySQL。基本上,我试图在使用数据读取器执行其他任务时运行另一个SQL语句。我在第cmdInserttblProductFrance.ExecuteNonQuery();行遇到异常

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);
            cmdInserttblProductFrance.ExecuteNonQuery(); //<=====THIS LINE THROWS "C# mySQL There is already an open DataReader associated with this Connection which must be closed first."
        }
    }
}

最佳答案

DataReaderExecuteNonQuery使用相同的连接。不支持此操作,according to MSDN


  请注意,在打开DataReader时,正在使用Connection
  由该DataReader独占。您不能执行任何命令
  连接,包括创建另一个DataReader,直到
  原始的DataReader已关闭。


2018年更新:链接到MSDN

关于c# - 异常(exception):已经有一个与此连接关联的打开的DataReader,必须首先关闭,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34023007/

10-11 23:56