标题:adoquery的用法,求助
只看楼主
hln26460822
Rank: 1
等 级:新手上路
帖 子:60
专家分:0
注 册:2005-6-25
 问题点数:0 回复次数:2 
adoquery的用法,求助

如果想用adoquery来进行查询的话,不查询的话,所有的信息都在一个页面显示的,如果我要进行查询,
begin
if edit1.Text <> '' then
begin
adoquery1.Close;
adoquery1.SQL.Clear;
adoquery1.SQL.Add('select * from 表2 where name like :shr') ;
ADOQuery1.active :=false;
adoquery1.Parameters.ParamByName('shr').Value := edit1.Text;
ADOQuery1.active :=true;
end ;

end;


那什么没有效果啊?

搜索更多相关主题的帖子: adoquery 用法 begin shr name 
2007-04-13 10:02
aaron52088
Rank: 1
等 级:新手上路
帖 子:130
专家分:0
注 册:2007-1-24
得分:0 

if edit1.text<> '' then
begin
adoquery1.sql.clear;
adoquery1.sql.text:='select * from 表2 where name=:shr';
adoquery1.Parameters.ParamByName('shr').value:=edit1.text;
try
adoquery1.open;
except
showmessage('访问数据库连接错误');
exit;
end;
end;
这样试试看行不行吧


2007-04-13 10:17
nongen
Rank: 5Rank: 5
来 自:网络
等 级:贵宾
威 望:17
帖 子:322
专家分:0
注 册:2006-11-25
得分:0 
你有没有设置对应的grid和source?

昨天不是我的,明天不是你的,今天却是我们的。
http://www.
2007-04-13 21:02



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-131502-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.147633 second(s), 10 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved