zoukankan      html  css  js  c++  java
  • 删除DataTable中重复的记录

     /// <summary>
            /// 删除DataTable中重复的记录  

          /// </summary>
            /// <param name="ds"></param>
            /// <returns></returns>
            public DataSet DeleteSameData(DataSet ds)
            {
                DataSet resultds = ds.Clone();
                DataSet Tempds=ds;        

                int count = 0;        

                if (ds != null && ds.Tables.Count > 0)
                {
                    count = ds.Tables[0].Rows.Count;

                    for (int i = 0; i < count; i++)
                    {
                        DataRow dri = Tempds.Tables[0].Rows[i];

                        if (dri.RowState == DataRowState.Deleted) continue;

                        resultds .Tables[0].ImportRow(dri);

                        for (int j = i + 1; j < count; j++)
                        {
                            DataRow drj = Tempds.Tables[0].Rows[j];
                            if (drj.RowState == DataRowState.Deleted) continue;
                             if (anwercount <= 1) continue;

                            //判断相同
                            bool flage = false;
                            flage = JudgeSame(dri, drj);
                            if (flage)
                            {
                                //除去相同

                                Tempds.Tables[0].Rows[j].Delete();
                            }
                           

                        }
                    }

                }   


                return resultds ;
            }
          

  • 相关阅读:
    win8下Source Insight has not been installed completely问题的解决
    linux命令学习——ps
    linux命令学习——file
    树莓派进阶之路 (023)
    树莓派进阶之路 (022)
    树莓派进阶之路 (021)
    树莓派进阶之路 (020)
    ubuntu下安装gedit插件
    C语言学习笔记 (004)
    C语言学习笔记 (003)
  • 原文地址:https://www.cnblogs.com/discoverx/p/2185043.html
Copyright © 2011-2022 走看看