Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL Express 1

Status
Not open for further replies.

murzina

Programmer
Jan 14, 2009
14
Is it necessary to use SQL Express or SQL Server in Visual Studio 2008 is sufficient to create a database on a laptop? If SQL Express is necessary, then what version is appropriate and where can I download it?
 
YOu can use what ever database you want. Visual Studio is just an IDE and does not dictate what you can and cannot use, the comes in with the .NET framework, however I don't know of any db you cannot use.

You can download SQLExpress for free from Microsoft.
 
isn't VS using SqlExpress as the default db server? I use either sqlite or sqlexpress for development and testing. for production we are running Sql Server 2000.

with data access frameworks like ActiveRecord, NHibernate, LLBL the code is db egnositic. I can change db's without modifying any code.

Jason Meckley
Programmer
Specialty Bakers, Inc.
 
isn't VS using SqlExpress as the default db server?
It's not a default DB perse, but it will use SQLExpress internally for some things like webparts etc.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top