Lightweight SQL database which doesn't require installation

Alexander Prokofyev picture Alexander Prokofyev · Nov 7, 2008 · Viewed 24k times · Source

Could you recommend a lightweight SQL database which doesn't require installation on a client computer to work and could be accessed easily from .NET application? Only basic SQL capabilities are needed.

Now I am using Access database in simple projects and distribute .MDB and .EXE files together. Looking for any alternatives.

Answer

Christian C. Salvadó picture Christian C. Salvadó · Nov 7, 2008

Check SQLite, it's a software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine.

It has many wrappers for .NET