.NET 3.x Dataset. "Cannot find table 0." - C#
Формулировка задачи:
Здравствуйте. Пытаюсь добавить строки в datatable. В конструкторе в свойствах dataset добавил таблицу (Table1). Потом делаю так:
Выдает ошибку "Cannot find table 0." Разъясните, пожалуйста, что я делаю не так.
for (int i = 1; i <= CSV_Struct.Count - 1; i++) { DataRow dt = dataSet1.Tables[0].NewRow(); dt[0] = CSV_Struct[i].name; dt[1] = CSV_Struct[i].art; dt[2] = CSV_Struct[i].qty; dt[3] = CSV_Struct[i].barcode; dt[4] = CSV_Struct[i].scan; dataSet1.Tables[0].Rows.Add(dt); } { dataGrid1.DataSource = dataSet1.Tables[0];
Решение задачи: «.NET 3.x Dataset. "Cannot find table 0."»
textual
Листинг программы
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; namespace ConsoleApplication3 { class Program { static void Main(string[] args) { DataSet myDataSet = new DataSet("MyDataSet"); for (int i = 0; i < 5; i++) { myDataSet.Tables.Add(new DataTable("Table " + i)); } for (int i = 0; i < 5; i++) { for (int j = 0; j < 3; j++) { myDataSet.Tables[i].Columns.Add(new DataColumn("Column " + j)); } } for (int i = 0; i < 3; i++) { DataRow newRow = myDataSet.Tables[3].NewRow(); newRow.ItemArray = new Object[] { 1, 2, 3 }; myDataSet.Tables[3].Rows.Add(newRow); } } } }
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д