3

我希望有一种方法可以在 Visual Studio 中动态创建数据集(我正在使用 C#)将数据放入从任何数据库、任何表和任何列收集的报告中

(我有一个程序可以连接任何mysql或sql数据库,并显示任何表和任何列。)

现在我需要将其放入报告中。但首先是一个数据集。

DataTable table1 = new DataTable("patients");
table1.Columns.Add("name");
table1.Columns.Add("id");
table1.Rows.Add("sam", 1);
table1.Rows.Add("mark", 2);

DataTable table2 = new DataTable("medications");
table2.Columns.Add("id");
table2.Columns.Add("medication");
table2.Rows.Add(1, "atenolol");
table2.Rows.Add(2, "amoxicillin");

// Create a DataSet and put both tables in it.
DataSet set = new DataSet("office");
set.Tables.Add(table1);
set.Tables.Add(table2);


// TODO: This line of code loads data into the 'SwimkidzDataSet.Branches' table. 
// You can move, or remove it, as needed.
this.BranchesTableAdapter.Fill(this.manuallyCreatedDataset.Branches);

试过这个,但没有机会它会起作用

this.BranchesTableAdapter.Fill(set);
this.reportViewer1.RefreshReport();
4

0 回答 0