首页 > 编程 > .NET > 正文

将DataTable中的一行复制到另一个DataTable的方法

2024-07-10 13:22:31
字体:
来源:转载
供稿:网友
将DataTable中的一行复制到另一个DataTable

方法1:

        DataRow dr = ds2.Tables[0].NewRow();
        dr.ItemArray = ds1.Tables[0].Rows[i].ItemArray;
        ds2.Tables[0].Rows.Add( dr ); 

方法2:

     ds2.Tables[0].ImportRow(ds1.Tables[0].Rows[i]);

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表