ReportDataSource reportDataSource = new ReportDataSource("queryStat_wjwj", SqlHelper.ExecuteDataset(sql.ToString()));
出现错误 “值不在预期的范围内”
注意 第2个参数 SqlHelper.ExecuteDataset(sql.ToString()) 返回的 dataset
改成 SqlHelper.ExecuteDataset(sql.ToString()).Tables[0] 返回的 Table 即可