vote up 8 vote down star
1

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
flag

78% accept rate
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 at 20:15
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 at 20:40
I'm with William. What shortcomings are hindering your use of SQLite? It's been outstanding at every turn for me. – nicerobot Jan 6 at 20:44
Keep in mind that SQLite is the default db for Android OS. Might be relevant. – jcollum Jan 6 at 21:08
The iPhone/iTouch OS uses SQLite too. – William Brendel Jan 6 at 21:10
show 1 more comment

10 Answers

vote up 3 vote down

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

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

I have been really impressed with VistaDB

http://www.vistadb.net/

link|flag
vote up 3 vote down

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|flag
vote up 2 vote down

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|flag
vote up 3 vote down

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

link|flag
vote up 0 vote down

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

link|flag
vote up 2 vote down

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 Microsft dumb-old Microsoft Access.

link|flag
I didn't realize that. However, if you wanted to use SQL Express, you could also use the 2005 Edition. – BobbyShaftoe Jan 7 at 0:23
vote up 10 vote down

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.

link|flag
1  
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 at 21:02
Agreed, it's a valid answer. – jcollum Jan 6 at 21:07
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. – amdfan Jan 6 at 23:07
1  
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 at 19:01
Thanks for sharing this, Karthik. – Lance Fisher Apr 9 at 7:51
show 1 more comment
vote up 1 vote down

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|flag
vote up 3 vote down

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

link|flag

Your Answer

Get an OpenID
or

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