Database Server Connection
The Database Server connection string is responsible for connecting the DVI application to the database server.
The connection string is stored in the "web.config" file of the DVI application, located in the "bin" subfolder of the "Plass.Id.Web" site.
Step-by-step guide
Open the Internet Information Services (IIS) Manager
In the left column, expand "Sites" and "Default Web Site", find "Plass.Id.Web", select it and then double-click the "Connection Strings" icon in the right area
(click image to enlarge)Data Source=PDS-VSSQL-05\DVI;Initial Catalog=DVI5;Integrated Security=True;MultipleActiveResultSets=True
Key Description Sample Value Data Source The DNS name of the SQL Server, appended with "\" and any SQL Instance name.
The \ and instance name is only necessary if it is not the default instance.
On the free SQL Express server, it is mostly "\SQLEXPRESS", and the complete
name on a stand-alone is then ".\SQLEXPRESS" where "." denotes the local machine.PDS-VSSQL-05\DVI Initial Catalog The name of the database on the SQL Server DVI5 Integrated Security Whether the connection should authenticate to the SQL Server using the user
assigned to the application pool.True MultipleActiveResultSets Allows the connection to serve multiple ongoing processes with different simultaneous queries. True
Related articles