web-dev-qa-db-ja.com

既にデータが含まれているデータテーブルに新しい列とデータを追加する-C#

すでにデータが含まれているDataColumnオブジェクトに新しいDataTableを追加するにはどうすればよいですか?

擬似コード

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

あなたのコードを続けてください-あなたは正しい軌道に乗っています:

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

For!ではなく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 
} 
11
Imir Hoxha

For/ForEachループを削減する代替ソリューションを次に示します。これにより、ループ時間と更新が迅速に削減されます。

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

デフォルト値パラメータを設定するのはあなただけです。この呼び出し3番目のオーバーロードメソッド。

dt.Columns.Add("MyRow", type(System.Int32),0);
4
Nishantha

試してみてください

> dt.columns.Add("ColumnName", typeof(Give the type you want));
> dt.Rows[give the row no like  or  or any no]["Column name in which you want to add data"] = Value;
2
Himanshu Shukla