1. 程式人生 > >.net dataset新增列,迴圈重新設定資料

.net dataset新增列,迴圈重新設定資料

ds就是從資料庫裡面讀取出來的資料列表

ds.Tables[0].columns.add("你要新增的列表名稱");

ds.Tables[0].Rows[0]["hao"] = "hhhhh";

這樣就在0行的"hao"裡面新增的一個數據

要是想全部修改

for(int  i =0;i<ds.Tables[0].Rows.Count;i++){

ds.Tables[0].Rows[i]["hao"] = "hhhhh";

}