Connections Missing
Connections Missing. The typed dataset will not compile. Please add the required connection strings to the application settings.
This dialog box appears when adding or copying an existing typed dataset that includes references to a connection string in the project's application settings. The project that the existing dataset has been added to does not have the referenced connection string setting, resulting in the dataset failing to compile.
To fix the compiler error, add the connection string to the project's application settings.
To correct this error
Click OK to close the dialog box.
From the Build menu, build the current project.
Inspect the Error List and locate the error in the dataset. It should be similar to the following: 'NorthwindConnectionString' is not a member of 'ApplicationName.Settings'.
In Solution Explorer, double-click the My Project icon (Visual Basic) or Properties toolbar button (Visual C#) to open the Project Designer.
Choose the Settings page.
In the Name column, type the name of the connection string referenced in the error. For example, NorthwindConnectionString.
In the Type column, select (Connection string) from the drop-down list.
In the Value column, type your connection string, or click the ellipsis button (...) to create a connection string using the Add/Modify Connection Dialog Box (General).
See Also
Tasks
How to: Edit a Connection String
How to: Save a Connection String
Concepts
Other Resources
Connecting to Data in Visual Studio
Preparing Your Application to Receive Data
Fetching Data into Your Application
Displaying Data on Forms in Windows Applications