ユーザーの SQL クエリを実行し、結果を pdf/csv に出力する小さな Web アプリがあります。大規模なクエリの場合、次のエラーが発生します。
ERROR [57014] [IBM][DB2/AIX64] SQL0952N Processing was cancelled due to an interrupt. SQLSTATE=57014
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: IBM.Data.DB2.DB2Exception: ERROR [57014] [IBM][DB2/AIX64] SQL0952N Processing was cancelled due to an interrupt. SQLSTATE=57014
調査を行った後QueryTimeout
、接続文字列にパラメーターを追加する必要があることがわかりました。簡単な編集を除けば、vb.net の経験はあまりありません。関連するコードは次のようになります。
Imports IBM.Data.DB2
Dim conn As New DB2Connection(ConfigurationManager.AppSettings(ddDatabase.SelectedValue))
Dim cmd As New DB2Command(strSQL, conn)