delphi dm.ADOQuery1:missing SQL property

我做的是个登陆框请达人指点那里有问题interfaceusesWindows,Messages,SysUtils,Variants,Classes,Graphics,Co... 我做的是个登陆框
请达人指点那里有问题
interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;

type
TForm2 = class(TForm)
GroupBox1: TGroupBox;
RadioButton1: TRadioButton;
RadioButton2: TRadioButton;
GroupBox2: TGroupBox;
Label1: TLabel;
Label2: TLabel;
Edit1: TEdit;
Edit2: TEdit;
Button1: TButton;
Button2: TButton;

procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form2: TForm2;
m:integer;
czy:string;
s:boolean;
implementation
uses
Unit1;
{$R *.dfm}

procedure TForm2.Button2Click(Sender: TObject);
begin
close;
end;

procedure TForm2.Button1Click(Sender: TObject);
begin

m:=m+1;

if edit1.Text='' then

begin
dm.ADOQuery1.close;
dm.ADOQuery1.open;
application.MessageBox('请输入用户名','提示',64);

end
else

if edit2.Text='' then
begin
dm.ADOQuery1.close;
dm.ADOQuery1.open;
application.MessageBox('请输入密码','提示',64) ;

end
else

begin

dm.ADOQuery1.Close;

dm.ADOQuery1.SQL.Clear;

dm.ADOQuery1.sql.Add('select * from cuser where username = :a and pass = :b');

dm.ADOQuery1.parameters.ParamByName('a').Value:=trim(edit1.Text);

dm.ADOQuery1.parameters.ParamByName('b').Value:=trim(edit2.Text);

dm.ADOQuery1.open;

end;

if dm.ADOQuery1.RecordCount>0 then
begin

czy:=dm.ADOQuery1.FieldByName('username').Value;

s:=true;

form2.Hide;

end

else

if m<3 then

begin

application.MessageBox('用户名或密码错误,请重新输入!','提示',64);

edit1.Clear;

edit2.Clear;

edit1.SetFocus;

end

else
begin

application.MessageBox('您无权使用本系统!','提示',64);

Application.Terminate;

end;

end;

end.
展开
 我来答
dj1893
2007-05-26 · TA获得超过1099个赞
知道小有建树答主
回答量:224
采纳率:0%
帮助的人:175万
展开全部
记住:在ADOquery.open前一定确保它的SQL中有语句。就是这个原因。
Button1的Click事件中有几处明显就是这个原因了。
快乐居家美食
2007-05-16 · TA获得超过1944个赞
知道大有可为答主
回答量:2392
采纳率:100%
帮助的人:1584万
展开全部
dm.ADOQuery1.close;
dm.ADOQuery1.open;

有两处这个去掉试下,因为提示的信息显示ADOQuery1的SQL属性未设置,大概只有这个地方可以引起这个问题了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式