Subject Re: [IBO] Your user name and password are not defined. ??????
Author Geoff Worboys
> LoginPrompt := false;
> with Params do
> Begin
> Values['USER NAME'] := 'SYSDBA';
> Values['PASSWORD'] := 'masterkey';
> end;

IBO no longer uses the Params for password storage (its not a secure
way to do things). See the online help for the
TIB_Connection.PasswordStorage option.

eg. Try
IB_Connection.PasswordStorage := psNotSecure;
IB_Connection.Password = 'masterkey';

> Path := 'MY_PATH';

This does not look very likely. Path should be the entire path
including the drive, directory, filename and extension.

--
Geoff Worboys
Telesis Computing