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 中国語 Web サイトの他の関連記事を参照してください。