函数永远不会被调用并引发异常
本文关键字:异常 调用 永远 函数 | 更新日期: 2023-09-27 18:34:35
我有一个代码,如下所示:
try
{
strReportName = Application.StartupPath + "''Report''Accounts''AccTrialBalanceCrystalReport.rpt";
DataSet ds = new System.Data.DataSet();
SchoolSoulLibrary.clsCommonVariables OClsCommonVariables = new SchoolSoulLibrary.clsCommonVariables();
ds = OclsCommonVariables.SetDataInDataSetFromEnumerableList(ref ds, reportData.AsEnumerable()); // Throws exception at this line.
string[,] AryParameter = new string[,]
{
{"totalOpeningDr", vOpDr.ToString()},
{"totalOpeningCr", vOpCr.ToString()},
{"totalCurrentDr", vCurDr.ToString()},
{"totalCurrentCr", vClsngDr.ToString()},
{"totalClosingDr", vCurCr.ToString()},
{"totalClosingCr", vClsngCr.ToString()},
{"schoolName", clsSchoolSoulObjects.OAcdSchoolInfo.SchoolName},
{"@pStartDate", startDate.ToString()},
{"@pEndDate", endDate.ToString()},
{"@pSchoolId", schId.ToString()},
};
SchoolSoulLibrary.clsCrystalReport.SetReportSourceUsingReportPath(strReportName, ds, ref crystalReportViewer1, AryParameter);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
在这一行
ds = OclsCommonVariables.SetDataInDataSetFromEnumerableList(ref ds, reportData.AsEnumerable());
程序在函数内部没有 goin 的情况下抛出异常
引发的异常是"对象引用未设置为对象的实例"。
该函数采用三个参数
public DataSet SetDataInDataSetFromEnumerableList(ref DataSet DS, object obj, params string[] FieldNames)
{
return ds;
}
您需要检查报告数据。它将为空,这就是它抛出异常的原因。或者它可以是 SetDataInDataSetFromEnumerableList 方法。调试到此方法,看看到底什么是空的。
使用异常的堆栈跟踪,Luc