我正在尝试执行TableAdapter.Fill(dataTable),但它失败并出现上述错误。这是... DataSet.Designer.cs中的代码
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
public virtual int Fill(ZenwareDataSet.BatchPDADataTable dataTable) {
this.Adapter.SelectCommand = this.CommandCollection[0];
if ((this.ClearBeforeFill == true)) {
dataTable.Clear();
}
int returnValue = this.Adapter.Fill(dataTable); // <---Fails here.
return returnValue;
}
这是生成的代码。也许有些东西我需要改变?我想知道我的应用程序是否有多个数据库连接。这可能是什么?感谢您提供的任何帮助。
答案 0 :(得分:1)
答案 1 :(得分:1)
我希望这有助于某人。我在其他任何地方找不到答案,所以如果它有帮助,请将此答案投票。