Hi,
I am using LLBLGENPRO 2.0 and my application environment is VStudio2005,ASP.NET 2.0 & SQL Server 2005.
I configured the LLBL2.0 with the development database(DEVDB-X) and generated the dll.Its working.
Currently we setup the application in the production server.In the production server the name of the database(Production-x) is different.
I added the following attribute in web.config.
<!-- Connection string used by LLBpro classes -->
<add key="Main.ConnectionString" value="data source=xxxx;initial catalog=Production-x;User ID=sa;Password=xxxxx;persist security info=False;packet size=4096"/>
Also dal.dll.xml (App.config) we changed as
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="Main.ConnectionString" value="data source=xxxx;initial catalog=Production-x;User ID=sa;Password=xxxxx;persist security info=False;packet size=4096"/>
</appSettings>
</configuration>
I put the dal.dll in my bin folder.
But the dal.dll refers the database DEVDB-X only.
Is there any problem in my configuration?
How should i go about this?
Please give the solution as soos as possible since we work in the production database..
Thanks in advance,
Balaji