delphi里代码连接数据库怎么连来着
2017-11-16 · 知道合伙人互联网行家
关注
展开全部
请参阅以下代码(代码源于网络):
var Alogo: TAlogo;implementationuses main;var username, password: string;{$R *.dfm}procedure TAlogo.BitBtn2Click(Sender: TObject);begin Alogo.Close;end;procedure TAlogo.BitBtn1Click(Sender: TObject);begin try with adoquery1 do begin Close; sql.clear; sql.add('select * from user_master where a=:a and b=:b '); parameters.ParamByName('a').Value := trim(combobox1.Text); parameters.ParamByName('b').Value := trim(edit1.Text); if combobox1.Text = '' then begin application.MessageBox('请输入用户名', '提示信息', 64); combobox1.SetFocus; exit; end; if edit1.Text = '' then begin application.MessageBox('请输入密码', '提示信息', 64); edit1.SetFocus; exit; end; open; end; if adoquery1.RecordCount <> 0 then begin username := combobox1.Text; password := edit1.Text; application.MessageBox('登陆成功', '提示信息', 64); amain.show; // 需要再建立一个form窗口用来作为登录正确后显示的窗体 self.Hide; end else application.MessageBox('输入的用户名或密码错误', '提示信息', 64); except application.MessageBox('登陆失败', '提示信息', 64); end;end;
var Alogo: TAlogo;implementationuses main;var username, password: string;{$R *.dfm}procedure TAlogo.BitBtn2Click(Sender: TObject);begin Alogo.Close;end;procedure TAlogo.BitBtn1Click(Sender: TObject);begin try with adoquery1 do begin Close; sql.clear; sql.add('select * from user_master where a=:a and b=:b '); parameters.ParamByName('a').Value := trim(combobox1.Text); parameters.ParamByName('b').Value := trim(edit1.Text); if combobox1.Text = '' then begin application.MessageBox('请输入用户名', '提示信息', 64); combobox1.SetFocus; exit; end; if edit1.Text = '' then begin application.MessageBox('请输入密码', '提示信息', 64); edit1.SetFocus; exit; end; open; end; if adoquery1.RecordCount <> 0 then begin username := combobox1.Text; password := edit1.Text; application.MessageBox('登陆成功', '提示信息', 64); amain.show; // 需要再建立一个form窗口用来作为登录正确后显示的窗体 self.Hide; end else application.MessageBox('输入的用户名或密码错误', '提示信息', 64); except application.MessageBox('登陆失败', '提示信息', 64); end;end;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询