Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a small project that will have 1 user on 1 computer. The database will be rather small (probably less than 1 mb of data). I plan to use WPF and Entity Framework for that project.

I came up with 2 potential database solutions for my project : SQL Server CE and SQL Server Express LocalDB (with SQL Server 2012). I have never worked with any of those, I'm more used to work with the full SQL Server 2008 installation.

I also want it to be easy to install on the client. Ideally I'd like to just throw a bunch of files on a folder (along with my .exe file).

So anybody here could suggest me the best technology to use?

Thanks!

share|improve this question

4 Answers

up vote 17 down vote accepted

See the Introducing SQL Server Express Local DB Runtime presentation - gives a great overview.

The huge benefit of LocalDB is that it's real SQL Server - it's a special version of SQL Server Express, but it basically supports everything that "real" SQL Server has - spatial data types, stored procedures - you name it.

SQL Server Compact Edition on the other hand is a very much scaled down version - lot of features and datatypes aren't supported. It's smaller and more "agile" - but it lacks a lot of punch.

I personally would pick SQL Server Express with the LocalDB runtime over SQL Server CE 4 - unless you specifically need the tiny size of SQL Server CE (e.g. on a mobile device).

Also see a comparison between SQL Server CE 3.5, CE 4.0, SQL Server Express 2008 R2 and SQL Server 2012 Express LocalDB on ErikEJ's excellent Everything SQL Server Compact web site.

share|improve this answer
Another good link blogs.msdn.com/b/jerrynixon/archive/2012/02/26/… – nawfal Feb 20 at 9:55

It depends, but based on your requirements (ie very small amount of data and XCopy installation), your only option is SQL Server Compact, as the footprint of SQL Compact on disk is about 18 MB vs 160 MB with LocalDB, and LocalDB requires an administrator install (comes as an MSI only) - but if SQL Server Compat is more important, LocalDB is the best choice (as marc_s notes)

share|improve this answer

I'm really going to have t go with ErikEJ here. I don't have the reputation to vote up his answer, but given your requested target SQL CE is really the quickest in and out. Many of the comparison issues given link provided by marc_s on SQL CE's "missing features" VS LocalDB are mitigated by virtue of your using EntityFramework (Procedural T-SQL is not supported, but if you use EF and Lambda and LINQ, that won't really be an issue).

share|improve this answer
1  
Yep. I don't see a reason why you'd need stored procedures when you're working with a local file. I'd also go with CE. – Allon Guralnek Mar 24 '12 at 10:02

Also, if hiding your intellectual property/schema/data from easy access by users is important, SQL CE can be password protected/encrypted. SQL Local db can be easily opened from management studio.

share|improve this answer
If the application can open the DB, so can the user. – Andrew Barber Oct 6 '12 at 1:25
I think that is why he said hiding from easy access. A normal user would have to know the db password to get inside. – Tiago César Oliveira Mar 18 at 21:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.