将DataTable中的一行复制到另一个DataTable的方法_asp.net教程-查字典教程网
将DataTable中的一行复制到另一个DataTable的方法
将DataTable中的一行复制到另一个DataTable的方法
发布时间:2016-12-29 来源:查字典编辑
摘要:将DataTable中的一行复制到另一个DataTable方法1:DataRowdr=ds2.Tables[0].NewRow();dr.I...

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

方法1:

DataRowdr=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]);

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新asp.net教程学习
    热门asp.net教程学习
    编程开发子分类