DataTable常用代码
Posted 轴轴
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DataTable常用代码相关的知识,希望对你有一定的参考价值。
DataTable.ImportRow(dr)与DataTable.Rows.Add(dr)区别
DataTable sourceDt = this.GetSqlData(sql, parms); DataTable destincDt = sourceDt.Clone();//仅复制结构 //.... destincDt.ImportRow(sourceDt.Rows[i]);//用来将其他表的DataRow复制到当前的表,如果是复制自己的DataRow毫无意义,是不会成功的。 //destincDt.Rows.Add(sourceDt.Rows[i]);is Wrong
DataRow转换为DataTable工具方法
public DataTable SreeenDataTable(DataTable dt, string strWhere) { if (dt.Rows.Count <= 0) return dt; //当数据为空时返回 DataTable dtNew = dt.Clone(); //复制数据源的表结构 DataRow[] dr = dt.Select(strWhere); //strWhere条件筛选出需要的数据! for (int i = 0; i < dr.Length; i++) { dtNew.Rows.Add(dr[i].ItemArray); // 将DataRow添加到DataTable中 } return dtNew; }
以上是关于DataTable常用代码的主要内容,如果未能解决你的问题,请参考以下文章