v3.0 Final. Runtime version 3.0.10.1025. .Net 4.0. SQL Server 8.0.2066.
This is my first attempt at using LLBL Gen. ConfigFileHelper.ReadConnectionStringFromConfig(ConnectionStringKeyName) is returning an empty string. Thus when my DataAccessAdapter attempts to read the data, it throws an exception saying the ConnectionString is empty.
App.config clearly contains the connection string:
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="ConnectionString.SQL Server (SqlClient)" value="data source=sql-dev-00;initial catalog=master;integrated security=SSPI;persist security info=False;packet size=4096"/>
</appSettings>
</configuration>
Debugging reveals that ConnectionStringKeyName is in fact set to "ConnectionString.SQL Server (SqlClient)", yet the call to ConfigFileHelper.ReadConnectionStringFromConfig returns "".
I have not modified the code that LLBL Gen generated in any way. I'm not aware of my company having any other problems using LLBL Gen.
what is the problem and how do I resolve it?