我使用 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
我的陈述也有同样的问题。
我的代码有什么问题?我用谷歌搜索了一整天,但我看不到任何解决方案。