vote up 0 vote down star

Hi,

I'd like to allow my user's to switch between different databases on the login page at runtime.

I've currently got the ConnectionString stored in my App Settings file and all the dataset's refer to this setting.

I have tried modifying this setting at runtime, but this seems impossible.

How is the best way to do this?

Thanks,

flag

3 Answers

vote up 1 vote down

Could you not just have a second connection string in your config file? What sort of data access code have you got setup?

link|flag
all my datasets have their connectionstring as MyConnectionString (stored in app.setting) – Nathan Koop Jun 30 at 15:43
Is your problem that all your datasets are individually accessing the value from the config file? If it is then why not create a single piece of code responsible for returning the connection string to your datasets, then have that code read the appropriate connection string. – Iain Hoult Jun 30 at 18:53
vote up 1 vote down

You can force the code to pick up the connection string from disk by calling ConfigurationManager.RefreshSection prior to fetching the connection string:

ConfigurationManager.RefreshSection("connectionStrings");
string connectionString = ConfigurationManager.ConnectionStrings["someConnection"].ConnectionString;
link|flag
vote up 0 vote down

Is the database encrypted?

If it's not something that requires a large amount of privacy, you can store the connection string on a per-user basis.

For example:

System.Properties.Default.MyConnectionString = "Blah";
System.Properties.Default.Save();

or

string myConnectionString = System.Properties.Default.MyConnectionString;

EDIT: These can originally be set in VS by going to Project -> Properties -> Settings and make sure you put them in "User" Scope (Application Scope is read-only during runtime unless I'm mistaken).

EDIT2: Regarding comment below:

SqlConnection myConnection = new SqlConnection();
//Set from a normal String saved in user's settings
myConnection.ConnectionString = System.Properties.Default.MyConnectionString; 
myConnection.Open();
link|flag
Connection Strings are restricted to Application Scope :-( Thanks though – Nathan Koop Jun 30 at 16:37
Unless I'm mistaken you can use the 'String' type though. – McAden Jun 30 at 18:22

Your Answer

Get an OpenID
or

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