0

问题出在 Visual Studio 2005 中的 C# 和 Microsoft Access 2003 mdb 文件中。当我有很多记录(大约 500k)时,闲置的代码非常慢

foreach (DataRow parentrow in ds.Tables[0].Rows)
{
childrows = parentrow.GetChildRows(r);
if (childrows == null || childrows.Length == 0)
{
      table.LoadDataRow(parentrow.ItemArray, true);
}
}

任何加速代码的解决方案?

4

1 回答 1

-1

尝试这个:

table = ds.Tables[0];

埃德加

于 2012-12-11T16:41:12.157 回答