Drag & Drop

Attempt to initiate a new SQL Server operation with results pending. 오류가 뜰 때

려리군 2010. 4. 9. 10:53

참고주소 : http://www.sybase.com.hk/detail?id=897

위의 참고주소에서
Error 20019 (SYBERPND)
Severity Level 7 (EXPROGRAM)
부분을 참고하면 됩니다.

while((return_code = dbresults(dbproc))!=NO_MORE_RESULTS)
    {
        if(return_code == SUCCEED)
        {
                ....
                ....
                while(dbnextrow(dbproc) != NO_MORE_ROWS)
                {
                    ....
                    ....
                }
        }
    }

위와 같이 소스 코딩할 때 while문을 2중으로 써 주는 것이 안전합니다.