我有一个连接到MySQL的c#应用程序我使用Crystal Report,问题是当我点击按钮时它收到空数据,如下图所示:
这是我的代码:
MySqlDataAdapter MyDA = new MySqlDataAdapter();
MyDA.SelectCommand = new MySqlCommand("SELECT * from staff", con);
DataTable table = new DataTable();
MyDA.Fill(table);
ReportDocument rpt = new ReportDocument();
MyDataSet ds = new MyDataSet();
ds.Tables[0].Merge(table);
rpt.Load(@"C:\Users\Hoger\documents\visual studio2012\Projects\PHC\PHC\cr.rpt");
rpt.SetDataSource(ds);
crystalReportViewer1.ReportSource = rpt;
由于