Subject | Your user name and password are not defined. ?????? |
---|---|
Author | davissammybr |
Post date | 2002-08-02T23:33:40Z |
Hi All,
Im using an TIb_Connection to acess my database, but i have in
project the following procedure to connect to it.
Procedure Connect;
Begin
With My_IB_Connection do
Begin
Connected := false;
LoginPrompt := false;
with Params do
Begin
Values['USER NAME'] := 'SYSDBA';
Values['PASSWORD'] := 'masterkey';
end;
Server:= '';
Path := 'MY_PATH';
Protocol := cpLocal;
end;
IB_Con.Connected := true;
end;
After call the CONNECT procedure a receive the following message:
"Your user name and password are not defined.
Ask you database administrator to set up an Interbase login"
I don't understand it! Where is my error?
I'm using the Win2K.
Thanks.
Im using an TIb_Connection to acess my database, but i have in
project the following procedure to connect to it.
Procedure Connect;
Begin
With My_IB_Connection do
Begin
Connected := false;
LoginPrompt := false;
with Params do
Begin
Values['USER NAME'] := 'SYSDBA';
Values['PASSWORD'] := 'masterkey';
end;
Server:= '';
Path := 'MY_PATH';
Protocol := cpLocal;
end;
IB_Con.Connected := true;
end;
After call the CONNECT procedure a receive the following message:
"Your user name and password are not defined.
Ask you database administrator to set up an Interbase login"
I don't understand it! Where is my error?
I'm using the Win2K.
Thanks.