I am developing an application that is using an embedded iblite database. Under the IDE the application runs as expected. I have specified the username and password to the iblite database in the params section of the configuration. However when I attempt to deploy this application to another machine using paserver it keeps complaining that:
First chance exception at $75EB08B2. Exception class EIBNativeException with message '[FireDAC][Phys][IBLite]Your user name and password are not defined. Ask your database administrator to set up an InterBase login.'. Process CinemaManager.exe (20844)
I must be missing something. I have added code to the create module as follows to see if that helped.
FDConnection1.Connected:=false;
FDConnection1.Params.Database:='CinemaManager.ib';
FDConnection1.Params.UserName:='cinman';
FDConnection1.Params.Password:='cinman';
FDConnection1.Connected:=true;
I have added the IBtogo feature to the deployment list and I specified the IBlite version of the license file (reg_iblite.txt). It seemed to add the required files for IBLite to run.
It still insists that the username and password are not defined.
I can connect this database to the local interbase server using IBconsole using these credentials so I am pretty sure the username and password are correct.
Thanks in advance if anyone can point out what I am missing here.
Cheers