码迷,mamicode.com
首页 > Windows程序 > 详细

delphi如何检索adoquery里面某一列存在的重复行?

时间:2019-02-13 00:29:39      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:str   ado   color   message   next   ext   begin   pre   存在   

var
 IsHave:Boolean;
begin
  adoquery.first;
  while(not adoquery.eof) do 
begin
 if(adoquery.fieldbyname(列名).asstring="用户添加的值") then
 begin IsHave=True;
 break;
 end;
 adoquery.next;
end;
if(IsHave)then
showmessage("存在重复数据!");
end;

 

delphi如何检索adoquery里面某一列存在的重复行?

标签:str   ado   color   message   next   ext   begin   pre   存在   

原文地址:https://www.cnblogs.com/jijm123/p/10367510.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!