How to get the connection string?
I'm developing an application and connecting to a database so I can get the connection string and know it during development pahase and therefore I can set it to the ConnectionString property of my connection object. However, when I deploy this application on a client machine. How can I get the connection string to set it to the ConnectionString property for the connection object to access the database. Which means I cannot make my connection string a fixed connection string I need the connection string to be created dynamically.
I hope you understand what I mean.