How to: Save and Edit Connection Strings

Connection strings in Visual Studio applications can be saved in the application configuration file (also referred to as application settings), or hard-coded directly in your application. Saving connection strings in the application configuration file simplifies the task of maintaining your application. If the connection string needs to be changed, then you can update it in the application settings file (as opposed to having to change it in the source code and recompile the application).

Storing sensitive information (such as the password) within the connection string can affect the security of your application. Connection strings saved to the application configuration file are not encrypted or obfuscated, so it may be possible for someone to access the file and view its contents. Using Windows Integrated Security is a more secure way to control access to a database.

If you do not choose to use Windows integrated security and your database requires a user name and password, you can omit them from the connection string, but your application will need to provide this information to successfully connect to the database. For example, you can create a dialog box that prompts the user for this information and dynamically builds the connection string at run time. Security can still be an issue if the information is intercepted on the way to the database.

For more information, see Protecting Connection Information (ADO.NET).

To save a connection string from within the data wizards

  • Select the option to save the connection on the Save connection string to the application configuration file page.

To save a connection string directly into application settings

  1. In Solution Explorer double-click the My Project icon (Visual Basic) or Properties icon (C#) to open the Project Designer.

  2. Select the Settings tab.

  3. Enter a Name for the connection string. Refer to this name when accessing the connection string in code.

  4. Set the Type to (Connection string).

  5. Leave the Scope set to Application.

  6. Type your connection string into the Value field.

    -or-

    Click the ellipses (...) button in the Value field to open the Connection Properties dialog box to build your connection string. For more information, see Add/Modify Connection Dialog Box (General).

Editing Connection Strings Stored in Application Settings

You can modify connection information that is saved in application settings by using the Project Designer.

To edit a connection string stored in application settings

  1. In Solution Explorer, double-click the My Project icon (Visual Basic) or Properties icon (Visual C# to open the Project Designer.

  2. Select the Settings tab.

  3. Locate the connection you want to edit and select the text in the Value box.

  4. Edit the connection string in the Value box.

    -or-

    Click the ellipses in the Value box to edit your connection with the Connection Properties dialog box. For more information, see Add/Modify Connection Dialog Box (General).

Editing Hard-Coded Connection Strings in Datasets

You can modify connection information that is saved in code by using the Dataset Designer.

To edit a connection string stored in a Dataset

  1. In Solution Explorer, double-click the dataset (.xsd file) with the connection you want to edit.

  2. Select the TableAdapter or query with the connection you want to edit.

  3. In the Properties window expand the DefaultConnection node.

  4. To quickly modify the connection string, edit the ConnectionString property.

    -or-

    Click the down arrow on the DefaultConnection property and choose New Connection to open the Add/Modify Connection Dialog Box (General).

Security

Storing sensitive information (such as a password) within the connection string can affect the security of your application. Using Windows integrated security is a more secure way to control access to a database.

For more information, see Protecting Connection Information (ADO.NET) and Security Overview (ADO.NET).

See Also

Concepts

Preparing Your Application to Receive Data

Fetching Data into Your Application

Binding Controls to Data in Visual Studio

Editing Data in Your Application

Validating Data

Saving Data

Other Resources

Overview of Data Applications in Visual Studio

Connecting to Data in Visual Studio