我正在学习 ADO.Net [C#] 并希望使用 DataGridView.DataSource = DataSet.tables[] 命令填充不同的 DataGridView。但我只知道如何将 1 个表填充到 1 个数据适配器,是否可以查询整个数据库并将所有表放在一个数据集中,这样我就可以使用 dataset.tables[table index] 选项填充直到 datagridview?
例子:
OleDbConnection con = new OleDbConnection();
con.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;data source =.accdb";
ds = new DataSet();
da = new OleDbDataAdapter("SELECT * ", con);
da.Fill(ds);
dgv.DataSource = ds.Tables[0]; (i want to have all the tables as an index so that i can put this as the datasource of the datagridview).
提前致谢。