Search code examples
.netembedded-database

What options are there for a quick embedded DB in .NET?


I'm making this tiny utility program (Windows Forms) and it would need to save a bit of data to the disk. In DB terms it would be about one table, no more than about couple thousand rows, each row being less then 1KB in size.

What would you use?

Added: Forgot to say - it would be really neat if the whole program would be just one .EXE file (plus the data file, of course). Thus I'd prefer something that is built in .NET.


Solution

  • SQLite.It is small and have great wrapper for .Net.