Find knowledge base article(s) by searching for keywords in the title e.g. type linux in the search box below
Find knowledge base article(s) by browsing the subject categories of articles
Technology quick references, cheatsheets, user manuals etc.
Shop Online through ShopifyLite
Tutorials on various IT applications.
Search Title    (UL:0 |SS:f)

Web >> Development >> ASP.Net >> ADO.Net >> How to specify ADO.Net connection string for SQL Server or MSDE named INSTANCE

For SQL server with a named INSTANCE of NETSDK eg. MyServer\NETSDK, Windows NT authentication:- cnn.ConnectionString = _ "Data Source=MyServer\NETSDK;" & _ "Initial Catalog=Northwind;" & _ "Integrated Security=SSPI" SQL server authentication cnn.ConnectionString = _ "Data Source=MyServer\NETSDK;" & _ "Initial Catalog=Northwind;" & _ "User ID=sa;Password=********"
[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]