History for sqlite: An open source database system
changed: - "sqlite":http://www.sqlite.org 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.