Connect to client’s SQL Server [closed]

It’s better to store sql server connection string in your configuration file (if you are on .net framework then it’s App.Config for desktop apps and Web.Config for web apps) which you can update independently from your compiled app.
And then you will be able to connect any sql server you have access to.

Leave a Comment