gpt4 book ai didi

c# - 如何向已包含数据的数据表添加新列和数据?

转载 作者:IT王子 更新时间:2023-10-29 03:44:04 26 4
gpt4 key购买 nike

如何向已包含数据的 DataTable 对象添加新的 DataColumn

伪代码

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

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

foreach(DataRow row in dr.Rows)
{
//need to set value to NewColumn column
}

最佳答案

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

//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

关于c# - 如何向已包含数据的数据表添加新列和数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2312966/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com