数据表.ImportRow不添加行

本文关键字:添加行 ImportRow 数据表 | 更新日期: 2023-09-27 18:07:24

我试图使一个数据表,然后添加几行到它。下面是我的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data;

namespace thisNamespace
{
    class Program
    {
        static void Main(string[] args)
        {
            DataTable dt=new DataTable();
            dt.Columns.Add("XYZID");
            DataRow dr=dt.NewRow();
            dr["XYZID"]=123;
            dt.ImportRow(dr);
            dr["XYZID"] = 604303;
            dt.ImportRow(dr);
        }
    }
}

当我逐步执行程序时,dr成功初始化并填充了值,但在ImportRow(dr)之后,dt中的行数仍然为0。我觉得我肯定错过了什么明显的东西。这里出了什么问题?

数据表.ImportRow不添加行

如果行是分离的(就像它第一次创建时一样)ImportRows默默地失败(没有例外)-能够导入行,您必须将其添加到表中。然后,您可以将它导入到其他表中。

试试下面的代码:

dt.Rows.Add(dr)

it May Help you

DataTable table = new DataTable();
table.Columns.Add("Dosage", typeof(int));
    table.Columns.Add("Drug", typeof(string));
    table.Columns.Add("Patient", typeof(string));
    table.Columns.Add("Date", typeof(DateTime));
    //
    // Here we add five DataRows.
    //
    table.Rows.Add(25, "Indocin", "David", DateTime.Now);
    table.Rows.Add(50, "Enebrel", "Sam", DateTime.Now);
    table.Rows.Add(10, "Hydralazine", "Christoff", DateTime.Now);
    table.Rows.Add(21, "Combivent", "Janet", DateTime.Now);
    table.Rows.Add(100, "Dilantin", "Melanie", DateTime.Now);

首先需要添加一行:

 dt.Rows.Add(dr);

那么你必须调用下面的方法来提交它:

 dt.AcceptChanges();