up vote 0 down vote favorite
share [g+] share [fb]

Can I simply change the connection string to point from my Test DB to my Production DB when I go live with my website and DAL generated via Subsonic?

When I try to push to my production servers the DAL still seems to be talking with my Test DB even though I have changed the connectionstring to a valid production DB that contains the identical Schema.

TIA

John

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Yes, you should only have to change the setting in your web.config and make sure that your web app reloads. (it should almost always reload when the web.config is changed or replaced but I have seen times when it won't, you can then restart it in IIS or try editing the web.config locally)

You shouldn't have to rebuild

link|improve this answer
I've gone so far as to reboot the web server yet still it goes to the test DB instead of the Prod DB that is in the connectionstring / dataprovider. If I re-build with the new connection string it does go to the new DB but rebuilding before going to production just seems wrong. Is the connectionstring get built into the assemblies? – John S Apr 17 '09 at 16:46
1  
And you are changing the values in the web.config on the server? And the web.config isn't being compiled or anything in your deployment process? – James Avery Apr 17 '09 at 18:48
I am not changing the web.config on the production server (shouldn't have to). Our change management process is designed to not copy the web.config onto a production server of an existing web site. The Subsonic files and web site are seperate projects in my VS Solution. – John S Apr 17 '09 at 19:07
I just tried re-building and re-deploying just the Subsonic generated DAL dlls. Now I get a "ConnectionString property has not been initialized" error. – John S Apr 17 '09 at 19:08
ok, I am confused about your process. Where are you changing the provider and connection string for subsonic? Normally I store that in the web.config of the web site. – James Avery Apr 17 '09 at 19:15
show 7 more comments
feedback

Change the connection string, rebuild, and xcopy.

link|improve this answer
Rebuild???? That kind've defeats the purpose of having a test server. Our change management process involves testing DLLs in test and then moving them to prod. Recompiling before pushing to prod seems wrong. – John S Apr 17 '09 at 16:38
I am not sure why, but I have to sometimes rebuild one of my sites whenever I touch the connection string or the provider. – CodeToGlory Apr 17 '09 at 18:50
That is the same issue I am trying to resolve. Why do I sometimes need to rebuild to get the connectionstring to "take" – John S Apr 20 '09 at 16:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.