2

我正在尝试通过代码创建和填充水晶报告,但发生错误, 报告没有表格 ,但是当我尝试从数据集中提取数据时,它会显示准确的数据,没问题但不适用于水晶报告。

代码:

protected void Dataset_load() 
{
    SqlConnection sqlcon = new SqlConnection(conStr);
    SqlCommand sqlCom = new SqlCommand("select * from Login", sqlcon);
    SqlDataAdapter sqlDA = new SqlDataAdapter(sqlCom);
    DataSet ds = new DataSet("CRDataSet");

    try
    {
        sqlcon.Open();
        //sqlCom.ExecuteNonQuery();
        sqlDA.Fill(ds,"Login");

        ReportDocument rd = new ReportDocument();
        rd.Load(Server.MapPath("CrystalReport.rpt").ToString());
        rd.SetDataSource(ds.Tables["Login"]);
        CrystalReportViewer1.ReportSource = rd;


    }
    catch (Exception exc)
    {
        Response.Write(exc.Message);
    }
    finally 
    {
        sqlcon.Close();
    }
4

1 回答 1

2

在填充数据集之前,您需要将表添加到数据集中。

DataSet ds = new DataSet("CRDataSet");
ds.Tables.Add(datatable);
于 2013-10-28T22:47:58.090 回答