"类型的异常' System.OutOfMemoryException'被扔了#34;在调用Fill方法之后

时间:2015-11-21 15:31:23

标签: c# dataset dataadapter

我正在尝试使用数据集生成报告,以便从SQL Server数据库中获取超过300000条记录。但它给了我以下错误:

Exception of type 'System.OutOfMemoryException' was thrown

ClaimDS ds = new ClaimDS();
sp_CustomForms_UCAF_SummaryTableAdapter adapt = new   sp_CustomForms_UCAF_SummaryTableAdapter();

adapt.Fill(ds.sp_CustomForms_UCAF_Summary, x.amID,0,0,0,_fromdate,_todate,0);
ds.Dispose();
ds.Clear();

在调用adapt.Fill(ds.sp_CustomForms_UCAF_Summary, x.amID,0,0,0,_fromdate,_todate,0);后会立即显示此错误。

0 个答案:

没有答案