这是Delphi中使用query怎么出现这样的情况?
用delphi连接sybase,一个很简单的连接,
出现了这样的问题:
在sybase 下建立了数据库JXC
在增加的用户AA的属性,用户增加了别名JXC
并且在DBE中配置好了与数据库的连接
使用Dephi中的query控件,在Database下能够找到数据库JXC,并选中,
在Butten中加入:
With tempQry do
begin
Close;
SQL.Clear;
SQL.Add('select NAME from WLDW where CODE=:CODE');
ParamByName('CODE').AsString := CODEEdit.Text;
Open;
if RecordCount > 0 then
Label3.Caption := Fields[0].AsString
else
begin
ShowMessage('输入的供货商代码不存在!');
Exit;
end;
end;
运行也正常,
但是输入数字后,按下button就出现这样的错误:
Unkown user name or password
Login failed because an incorrect password was supplied
Alias :JXC,Process stopped Use step or Run to continue .
不知道是数据库的问题,还是delphi使用的问题。