vote up 0 vote down star

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

flag

33% accept rate

2 Answers

vote up 2 vote down

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|flag
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 Apr 17 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 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 Apr 17 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 Apr 17 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 at 19:15
show 7 more comments
vote up 0 vote down

Change the connection string, rebuild, and xcopy.

link|flag
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 Apr 17 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 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 Apr 20 at 16:06

Your Answer

Get an OpenID
or

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