*** Welcome to piglix ***

SQLite

SQLite
SQLite370.svg
Developer(s) D. Richard Hipp
Initial release 17 August 2000;
16 years ago
 (2000-08-17)
Stable release 3.17.0 (February 13, 2017; 11 days ago (2017-02-13))
Repository www.sqlite.org/cgi/src
Written in C
Operating system Cross-platform
Size 699 KiB
Type RDBMS (embedded)
License Public domain
Website sqlite.org

SQLite (/ˌɛskjuːɛlˈlt/ or /ˈskwəl.lt/) is a relational database management system contained in a C programming library. In contrast to many other database management systems, SQLite is not a client–server database engine. Rather, it is embedded into the end program.

SQLite is ACID-compliant and implements most of the SQL standard, using a dynamically and weakly typed SQL syntax that does not guarantee the domain integrity.

SQLite is a popular choice as embedded database software for local/client storage in application software such as web browsers. It is arguably the most widely deployed database engine, as it is used today by several widespread browsers, operating systems, and embedded systems (such as mobile phones), among others. SQLite has bindings to many programming languages.


...
Wikipedia

...