Subject | Re: No success with embedded firebird |
---|---|
Author | Franz J Fortuny |
Post date | 2004-06-24T02:10:22Z |
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
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