> 데이터 베이스 > MySQL 튜토리얼 > \'이미 열려 있는 DataReader가 있습니다...\' SQL 예외를 해결하는 방법은 무엇입니까?

\'이미 열려 있는 DataReader가 있습니다...\' SQL 예외를 해결하는 방법은 무엇입니까?

Linda Hamilton
풀어 주다: 2024-12-04 19:54:11
원래의
256명이 탐색했습니다.

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를 닫은 후 "이 연결과 연관된 열려 있는 DataReader가 이미 있습니다. 먼저 문을 닫으세요." 예외가 발생합니다.

위 내용은 \'이미 열려 있는 DataReader가 있습니다...\' SQL 예외를 해결하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿