sqlite: An open source database system
last edited 2 years ago by shankar
sqlite is a lightweight, open source database system for embedded use. sqlite supports the SQL language with manifest typing (as opposed to static typing) and an ACID model (atomic, consistent, isolated, durable). Multiple threads can access the database, but locking is applied to the whole database. The source code consists of about 60,000 lines of heavily commented C.