代码如下:
ds.Tables["RPT_Quarter"].columns.add("waterCode",typeof(System.String));

DataView dv = ds.Tables["RPT_Quarter"].DefaultView;
if(int i=0;i<dv.count;i++)
{
   ds.Table["RPT_Quarter"].Rows[i]["waterCode"] = your data;
}

相关文章:

  • 2021-07-03
  • 2022-12-23
  • 2022-02-22
  • 2022-12-23
  • 2022-12-23
  • 2021-11-23
  • 2022-12-23
  • 2022-01-11
猜你喜欢
  • 2022-12-23
  • 2022-01-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-31
  • 2021-08-02
相关资源
相似解决方案