Fill 操作将行添加到 DataSet 中的目标 DataTable 对象,如果 DataTable 对象不存在,则创建这些对象。
常用方法如下:
DataSet custDS = new DataSet();
custDA.Fill(custDS, "Customers");
中间两个参数没有用过!
Fill 操作将行添加到 DataSet 中的目标 DataTable 对象,如果 DataTable 对象不存在,则创建这些对象。
常用方法如下:
DataSet custDS = new DataSet();
custDA.Fill(custDS, "Customers");
中间两个参数没有用过!
