0

Visual Studio 2013 を使用して、tabaleadapter を使用してデータベースに接続する winform アプリを作成します。私の問題は、挿入クエリがループステートメント内にあるときに未処理の例外をスローすることです。

このコードは次のように機能します。

abcTableAdapter.InsertQuery(param1, param2, param3);

しかし、このコードは例外をスローします:

for (int i = 1; i < 5; i++)
{
  abcTableAdapter.InsertQuery(param1, param2, param3);
}

例外は次のとおりです。

An unhandled exception of type 'System.AccessViolationException' occurred in myApp.exe

Additional information: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

foreachステートメントにも同じ問題があります。

コードの何が問題になっていますか? 一日中グーグル検索しましたが、解決策がわかりません。

4

0 に答える 0