Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual studio 2010 and Sql Server

Do visual studio 2010 include already Sql Server instance, or I need to install Sql Server developer edition to develop an application that need a Sql Server db.

If it installs a Sql Server express edition, it this enough or it's better to have Sql Server developer edition?

like image 451
Fitzchak Yitzchaki Avatar asked Mar 17 '10 23:03

Fitzchak Yitzchaki


1 Answers

I would second that installing the "full" SQL Server Development Edition makes sense if you do serious database development.

However you can have both installed side by side, and having SQL Server Express is very useful for one reason - it supports placing database files in the App_Data folder of ASP.NET applications. While I don't do this for my own projects, it's a very nice feature for demos or open source applications you download from the web: just unzip, start VS, hit F5, and you have a running solution including database. Without SQL Express, you first have to move the MDF file, attach the database, set up user rights, replace the connection strings etc...

like image 144
realMarkusSchmidt Avatar answered Nov 15 '22 08:11

realMarkusSchmidt