SQLite
SQLite is "a small, fast, self-contained, high-reliability, full-featured" SQL database engine.
Written in C, it is an "in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine".
SQLite does not have a separate server process. It reads and writes directly to ordinary disk files. A complete SQL database with multiple tables, indices, triggers, and views, is contained in a single disk file.
It is the most-used database engine in the world, running on all mobile phones, most computers and televisions, and is used by many millions of software applications.
Read all about SQLite on their website.
|