About SQLite
- SQLite is the most popular embedded relational database and probably the widely deployed software module.
Some features:
- The database is just a single file.
- It has an in-memory version for fast access to temporary data.
- No need for external server process.
- The client directly accesses the file containing the data.
- There is a command-line tool called
sqlite3to access the data. - There are several GUI tools to view and manipulate data.
- Most programming languages have a library to access an SQLite database.