Hi
I have an application that worked fine with LLBL 2004 a firebird databse using the .NET provider 1.6.3
I am now trying to upgrade this app to the latest version of LLBL which uses the 1.7 version of the .NET provider
Here is what I did
- Uninstall the 1.6.3 .net provider
- uninstall LLBL 2004
- Install 1.7 .Net proivider
- Install LLBL 2005
- Regenerated all my code in LLBL
When I open the solution in VS, everything looks perfect ( the references to the firebird library all say 1.7 etc) and it compiles beautifully first time
However when I run the application it does not seem able to communicate with the database.
What have I missed?
I am using the following command to establish a connection to the database
return new DataAccessAdapter("ServerType=0;User=SYSDBA;Password=masterkey;Dialect=3;Database=" + strFileName,false);
which was working fine with 1.6.3 and LLBL 2004
Many thanks in advance