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 ;
            }
          

  • 相关阅读:
    OSG节点访问和遍历
    osg ifc数据渲染着色器
    osg qt kdchart 开发施工过程模拟软件
    KDChart example
    Qt kdChart 甘特图案例
    Qt KDChart编译
    osg 3ds模型加载与操作
    osg 三维模型加载与解析(fbx、3ds、ive、obj、osg)
    osg fbx 模型结构操作
    osg fbx 模型树结构
  • 原文地址:https://www.cnblogs.com/discoverx/p/2185043.html
Copyright © 2011-2022 走看看