Site Meter Asp.Net-Csharp,Asp,Ado.Net,Ado,Micosoft,Visualstudio,Visual webgui: sql server management studio express
Showing posts with label sql server management studio express. Show all posts
Showing posts with label sql server management studio express. Show all posts

Thursday, October 22, 2009

sql connection string in asp.net

Connetion string used for mssql server which is installed in you server.

SqlConnection sqlcon = new SqlConnection("data source=localhost;Initial Catalog= ur database name; User Id=XXX; Password=XXX");

Connetion string used for mssql server which is installed in you system(ie .sql
server management studio express)


SqlConnection sqlcon = new SqlConnection("Server=.\\SQLExpress;Initial Catalog=ur database name; User Id=XXX; Password=XXX; Integrated security=true");