Subject Re: No success with embedded firebird
Author Franz J Fortuny
Thanks for the help.

I had to find the connection lines in all my programs where I was
doing this:

sServer + ":" + sBaseFile;

changed to

String sEn; if(...) sEn = ":"; else sEn = "";

sServer+sEn+sBaseFile;

And that appeared in nearly 35 of the programs in the application.

FJF