SQLite
SQLite is a disk-based database engine that was introduced in 2000. The entire database resides in a single disk file. SQLite is great for any situation where SQL support is necessary but simplicity is desired. It is small less then 300KB in all. SQLite implements most of standard SQL with some exceptions, such as correlated subqueries.
Most of SQL92 is supported, including views, sub queries and triggers. The database is transaction compliant, although any transaction locks the entire database until it has completed. SQLite does not support foreign key constraints, alter table statements, writable views, right and full outer joins, and the grant and revoke statements.
SQLite.org (Version 3.0.8 - SQLite DLL without the TCL bindings. Need external dependency is MSVCRT.DLL)
Updated On: 15.02.17