当前位置:  开发笔记 > 编程语言 > 正文

将新列和数据添加到已包含数据的数据表中 - c#

如何解决《将新列和数据添加到已包含数据的数据表中-c#》经验,为你挑选了3个好方法。



1> marc_s..:

继续使用您的代码 - 您走在正确的轨道上:

//call SQL helper class to get initial data 
DataTable dt = sql.ExecuteDataTable("sp_MyProc");

dt.Columns.Add("NewColumn", typeof(System.Int32));

foreach(DataRow row in dt.Rows)
{
    //need to set value to NewColumn column
    row["NewColumn"] = 0;   // or set it to some other value
}

// possibly save your Dataset here, after setting all the new values


@Michael:不,不是真的.现在,您的数据集已准备好这些新值.如果要保存它,则需要使用某种方法将其写回(通过SqlDataAdapter或其他方法).AcceptChanges()不会做任何事情(除了将这些更改标记为"已接受" - >下次保存数据时不会检测到它们保存!)

2> Imir Hoxha..:

它应该foreach不是为了!?

//call SQL helper class to get initial data  
DataTable dt = sql.ExecuteDataTable("sp_MyProc"); 

dt.Columns.Add("MyRow", **typeof**(System.Int32)); 

foreach(DataRow dr in dt.Rows) 
{ 
    //need to set value to MyRow column 
    dr["MyRow"] = 0;   // or set it to some other value 
} 



3> 小智..:

这是一个减少For/ForEach循环的替代解决方案,这将减少循环时间并快速更新:)

 dt.Columns.Add("MyRow", typeof(System.Int32));
 dt.Columns["MyRow"].Expression = "'0'";

推荐阅读
php
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有