I've used SQLite before as a datastore for a C# winforms application, and it was great, however, it does possess many shortcomings.

I'm aware Microsoft have a product called SQL Server Compact Edition - does this work in the same way SQLite does, and if so, is it any good?

Are there any other alternatives?

Update

By alternatives I mean in-process data storage libraries which do not require any separate install packages or standalone executables

Update 2

Many people have been asking about the perceived shortcomings of SQLite.
I'd like to repeat that on the whole I had a great experience with it, and would strongly recommend it, but a couple of things bugged me

  1. Complete lack of type safety.
  2. You need to explicitly batch multiple sql statements into transactions or the performance is abysmal.
  3. I can't remember exactly, but from memory some particular kinds of joins and subselects just fail
  4. No support for ALTER TABLE. Ouch
link|improve this question

69% accept rate
3  
Perhaps if you explain some of the shortcomings you are seeing, we could help you overcome them. SQLite is generally considered one of the best--if not, the best--tools of its kind. – William Brendel Jan 6 '09 at 20:15
1  
Be careful of SQL Express - it hasn't stabilized yet. Every new version is different to some degree. At least SQLite is stable. – le dorfier Jan 6 '09 at 20:40
2  
Keep in mind that SQLite is the default db for Android OS. Might be relevant. – jcollum Jan 6 '09 at 21:08
2  
The iPhone/iTouch OS uses SQLite too. – William Brendel Jan 6 '09 at 21:10
3  
You can do an ALTER TABLE with Sqlite, so you can add a column. See sqlite.org/lang_altertable.html – tuinstoel Mar 14 '09 at 10:02
show 1 more comment
feedback

13 Answers

I've been well satisfied with the embedded version of Firebird.

link|improve this answer
feedback

My company, Telligent, has seen success with VistaDB. We ship it with our lightweight CMS product, Graffiti. It's nice because it allows easy, XCOPY based deployment. I'm sure it would work well for Winforms as well.

Also our product works well with MySQL and SQL Server 2000-2008. That says something about the ability to easily adapt your data access code that currently uses VistaDB to a larger scale database if/when you need it.

Update: I no longer work at Telligent. In 2009, they open sourced GraffitiCMS and it now only supports SQL Server 2000, 2005, 2008, Microsoft Access, and MySQL. VistaDB support was deprecated.

link|improve this answer
2  
I don't think there's anything wrong with mentioning your company's product if it's an actual answer to the question, which it is in this case. +1 to counteract the down-vote. – MusiGenesis Jan 6 '09 at 21:02
Agreed, it's a valid answer. – jcollum Jan 6 '09 at 21:07
1  
Offensive? Come on. He's using his product to illustrate a real-world application of VistaDB, and he's honest enough to tell us that he works on the product. – ine Jan 6 '09 at 23:07
2  
I certainly didn't intend for my response to come off as shameless self promotion. As others said, I just wanted to show that VistaDB is a great lightweight database that powers a successful product. Thank you all for your support. – Karthik Hariharan Jan 7 '09 at 19:01
Thanks for sharing this, Karthik. – Lance Fisher Apr 9 '09 at 7:51
show 4 more comments
feedback

I highly recommend h2 database; like sqllite it is an embedded database; and it is open source. It could be run in both stand along, and server modes. It also provides an in-memory capability, which may significantly improve performance. It is written in Java; so is particularly well suited for Java programs.

link|improve this answer
feedback

There is berkeley db library. http://www.oracle.com/database/berkeley-db/index.html

link|improve this answer
1  
BerkeleyDB isn't really a database. It is just a disk based fast key-value lookup mechanism. – Starkii Jan 6 '09 at 20:58
4  
It is still a "in-process data storage library". – artificialidiot Jan 6 '09 at 22:51
+1 for berkeley db – Orion Edwards Jan 7 '09 at 2:05
feedback

SQL Server Compact can be a good choice, it's free, easy-to-use.

I like it very much since it's Linq-To-SQL Compatible...

link|improve this answer
feedback

Be careful of SQL Express - it hasn't feature-stabilized yet (I can't speak to reliable-stable). Every new version is different to some degree. At least SQLite is what it is. And so is dumb-old Microsoft Access.

link|improve this answer
I didn't realize that. However, if you wanted to use SQL Express, you could also use the 2005 Edition. – BobbyShaftoe Jan 7 '09 at 0:23
2  
FYI: SQL Express 2008 R2 has upped the size limit to 10GB. – Garo Yeriazarian Jul 9 '10 at 0:02
feedback

There are many alternatives, depending on the amount of data, and what sort of features you need. I've used all of these and been happy with them:

SQL Express 2005/8

MS Access

MySQL

Flat files (csv, txt)

xml files

serialize objects in xml files.

link|improve this answer
feedback

Take a look to this comparison: http://dotnetperls.com/Content/SQLite-Versus-SQLCE.aspx

link|improve this answer
feedback

I have been really impressed with VistaDB

http://www.vistadb.net/

link|improve this answer
feedback

SQL CE desktop edition is good and fast. Databases are a single file, which is good.

Oracle Lite is also good and fast on the desktop. Databases are two files, which isn't that big a deal. Distribution is a pain in the butt, though. The installer is around 500-600 MB, even though the total size of the files you actually need on a client machine is less than 5 MB (typical Oracle). You have to do some work to figure out what DLLs you need and deploy them.

I'd go with SQL CE.

link|improve this answer
feedback

How much data? For small amounts, query using LINQ and serialize using XML. For more data and more features, SQLite is pretty much the way to go to keep things small.

One possible option that I haven't tried yet: http://sharphsql.codeplex.com/

link|improve this answer
feedback

Try Oracle 10g XE. It is free. It comes with a browser based management tool that is quite intuitive.

link|improve this answer
XE is good and powerful, but not exactly lightweight solution. Especially when considered as alternative to sqlLite – Miro A. Jul 8 '10 at 5:13
feedback

I was about to suggest Apache Derby, but I found the H2 suggestion more useful.

The good thing about both of these (Derby and H2) is that they support more data types than sqlite, which helps reduce the size of the DB. I have several MBs of data that I want to package with an application, and the flexible data types reduce both time and space needs.

H2 seems to be faster than Derby, based on the benchmarks on their website.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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