Subject Your user name and password are not defined. ??????
Author davissammybr
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.