SQLite

SQLite
Developer(s) D. Richard Hipp
Initial release August 2000 (2000-08)
Stable release 3.15.2 (November 28, 2016 (2016-11-28)[1]) [±]
Repository www.sqlite.org/cgi/src
Written in C
Operating system Cross-platform
Size 699 KiB
Type RDBMS (embedded)
License Public domain[2]
Website sqlite.org

SQLite (/ˌɛskjuːɛlˈlt/[3] or /ˈskwəl.lt/[4]) 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.[5]

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.[6] SQLite has bindings to many programming languages.

Design

Unlike client–server database management systems, the SQLite engine has no standalone processes with which the application program communicates. Instead, the SQLite library is linked in and thus becomes an integral part of the application program. The library can also be called dynamically. The application program uses SQLite's functionality through simple function calls, which reduce latency in database access: function calls within a single process are more efficient than inter-process communication. SQLite stores the entire database (definitions, tables, indices, and the data itself) as a single cross-platform file on a host machine. It implements this simple design by locking the entire database file during writing. SQLite read operations can be multitasked, though writes can only be performed sequentially.

Due to the server-less design, SQLite applications require less configuration than client-server databases. SQLite is called zero-conf[7] because it does not require service management (such as startup scripts) or access control based on GRANT and passwords. Access control is handled by means of File system permissions given to the database file itself. Databases in client-server systems use file system permissions which give access to the database files only to the daemon process.

Another implication of the serverless design is that several processes may need to be able to write to the database file. In server-based databases, several writers will all connect to the same daemon, which is able to handle its locks internally. SQLite on the other hand has to rely on file-system locks. It has less knowledge of the other processes that are accessing the database at the same time. Therefore, SQLite is not the preferred choice for write-intensive deployments.[8] However, for simple queries with little concurrency, SQLite performance profits from avoiding the overhead of passing its data to another process.

SQLite uses PostgreSQL as a reference platform. “What would PostgreSQL do” is used to make sense of the SQL standard.[9][10] One major deviation is that, with the exception of primary keys, SQLite does not enforce type checking; the type of a value is dynamic and not strictly constrained by the schema (although the schema will trigger a conversion when storing, if such a conversion is potentially reversible). SQLite strives to follow Postel's Rule.[11]

History

D. Richard Hipp designed SQLite in the spring of 2000 while working for General Dynamics on contract with the United States Navy.[12] Hipp was designing software used aboard guided missile destroyers, which were originally based on HP-UX with an IBM Informix database back-end. SQLite began as a Tcl extension.[13]

The design goals of SQLite were to allow the program to be operated without installing a database management system or requiring a database administrator. Hipp based the syntax and semantics on those of PostgreSQL 6.5. In August 2000, version 1.0 of SQLite was released, with storage based on gdbm (GNU Database Manager). SQLite 2.0 replaced gdbm with a custom B-tree implementation, adding transaction capability. SQLite 3.0, partially funded by America Online, added internationalization, manifest typing, and other major improvements.

In 2011 Hipp announced his plans to add an UnQL interface to SQLite databases and to develop UnQLite, an embeddable document-oriented database.[14]

Features

SQLite implements most of the SQL-92 standard for SQL but it lacks some features. For example, it partially provides triggers, and it can't write to views (however it provides INSTEAD OF triggers that provide this functionality). While it provides complex queries, it still has limited ALTER TABLE function, as it can't modify or delete columns.[15]

SQLite uses an unusual type system for an SQL-compatible DBMS; instead of assigning a type to a column as in most SQL database systems, types are assigned to individual values; in language terms it is dynamically typed. Moreover, it is weakly typed in some of the same ways that Perl is: one can insert a string into an integer column (although SQLite will try to convert the string to an integer first, if the column's preferred type is integer). This adds flexibility to columns, especially when bound to a dynamically typed scripting language. However, the technique is not portable to other SQL products. A common criticism is that SQLite's type system lacks the data integrity mechanism provided by statically typed columns in other products. The SQLite web site describes a "strict affinity" mode, but this feature has not yet been added.[11] However, it can be implemented with constraints like CHECK(typeof(x)='integer').[12]

Several computer processes or threads may access the same database concurrently. Several read accesses can be satisfied in parallel. A write access can only be satisfied if no other accesses are currently being serviced. Otherwise, the write access fails with an error code (or can automatically be retried until a configurable timeout expires). This concurrent access situation would change when dealing with temporary tables. This restriction is relaxed in version 3.7 when write-ahead logging (WAL) is turned on enabling concurrent reads and writes.[16]

SQLite version 3.7.4 first saw the addition of the FTS4(full text search) module, which features enhancements over the older FTS3 module.[17] FTS4 allows users to perform full text searches on documents similar to how search engines search webpages.[18] Version 3.8.2 added support for creating tables without rowid,[19] which may provide space and performance improvements.[20] Common table expressions support was added to SQLite in version 3.8.3.[21]

SQLite with full Unicode function is optional.[22]

Development and distribution

SQLite's code is hosted with Fossil, a distributed version control system that is itself built upon an SQLite database.[23]

A standalone command-line program is provided in SQLite's distribution. It can be used to create a database, define tables, insert and change rows, run queries and manage an SQLite database file. It also serves as an example for writing applications that use the SQLite library.

SQLite uses automated regression testing prior to each release. Over 2 million tests are run as part of a release's verification. Starting with the August 10, 2009 release of SQLite 3.6.17, SQLite releases have 100% branch test coverage, one of the components of code coverage. The tests and test harnesses are partially public domain and partially proprietary.[24]

Notable users

Middleware

Web browsers

Web application frameworks

Various

Operating systems

SQLite is included by default in:[13]

Programming language support

A large number of programming languages provide bindings for SQLite, including:

See also

Citations

  1. "SQLite Release 3.15.2 On 2016-11-28". SQLite. 2016-11-28. Retrieved 2016-11-28.
  2. "SQLite Copyright". sqlite.org. Retrieved May 17, 2010.
  3. D. Richard Hipp (presenter) (May 31, 2006). An Introduction to SQLite (video). Google Inc. Event occurs at 00:01:14. Retrieved March 23, 2010. [...] ess-kju-ellite [...]
  4. D. Richard Hipp (presenter) (May 31, 2006). An Introduction to SQLite. Google Inc. Event occurs at 00:48:15. Retrieved March 23, 2010. [...] sequelite [...]
  5. Owens, Michael (2006). "Chapter 4: SQL". In Gilmore, Jason; Thomas, Keir. The Definitive Guide to SQLite. D. Richard Hipp (foreword), Preston Hagar (technical reviewer). Apress. p. 133. ISBN 978-1-59059-673-9. Retrieved 30 December 2014.
  6. "Most Widely Deployed SQL Database Estimates". SQLite.org. Retrieved May 11, 2011.
  7. "SQLite Is A Zero-Configuration Database". SQLite.org. Retrieved August 3, 2015.
  8. "Appropriate Uses For SQLite". SQLite.org. Retrieved 2015-09-03.
  9. https://lwn.net/Articles/601144/
  10. https://www.pgcon.org/2014/schedule/events/736.en.html
  11. 1 2 "SQLite: StrictMode". Retrieved September 3, 2015.
  12. 1 2 Owens, Michael (2006). The Definitive Guide to SQLite. Apress. doi:10.1007/978-1-4302-0172-4_1. ISBN 978-1-59059-673-9.
  13. 1 2 3 "Well-Known Users Of SQLite". SQLite. Retrieved August 5, 2015.
  14. "Interview: Richard Hipp on UnQL, a New Query Language for Document Databases". InfoQ. August 4, 2011. Retrieved October 5, 2011.
  15. "SQL Features That SQLite Does Not Implement". SQLite.org. January 1, 2009. Retrieved October 14, 2009.
  16. "Write Ahead Logging in SQLite 3.7". SQLite.org. Retrieved September 3, 2011. WAL provides more concurrency as readers do not block writers and a writer does not block readers. Reading and writing can proceed concurrently
  17. "SQLite Release 3.7.4 On 2010-12-08". SQLite.org. December 8, 2010. Retrieved September 3, 2015.
  18. "SQLite FTS3 and FTS4 Extensions". SQLite.org. Retrieved September 3, 2015.
  19. "SQLite Release 3.8.2 On 2013-12-06". SQLite.org. December 6, 2013. Retrieved September 3, 2015.
  20. "The WITHOUT ROWID Optimization". SQLite.org. Retrieved September 3, 2015.
  21. "SQLite Release 3.8.3 On 2014-02-03". SQLite.org. February 3, 2014. Retrieved September 3, 2015.
  22. "Case-insensitive matching of Unicode characters does not work.". SQLite Frequently Asked Questions. Retrieved 2015-09-03.
  23. "Fossil: Fossil Performance". Fossil-scm.org. August 23, 2009. Retrieved September 12, 2009.
  24. "How SQLite Is Tested". SQLite.org. Retrieved September 12, 2009.
  25. http://system.data.sqlite.org/index.html/doc/trunk/www/index.wiki
  26. http://www.ch-werner.de/sqliteodbc/
  27. http://documentation.openoffice.org/HOW_TO/data_source/SQLite.pdf
  28. "sqlite — Sqlite Wrappers". SQLite.org. February 7, 2009. Retrieved February 7, 2009.
  29. https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/
  30. "Databases". Django Documentation. Django Software Foundation. Retrieved 13 November 2012.
  31. "Drupal 7".
  32. "Skype client using SQLite?". Mail-archive.com. August 28, 2007. Retrieved June 14, 2010.
  33. "Show Download History List of All Files Ever Downloaded Within Mac OS X".
  34. Using SQLite in Windows 10 Universal apps MSDN, visited 2016-11-08
  35.  : SQLite user defined functions Reference
  36. SQLProvider - A general SQL database type provider
  37. JSPDO JavaScript database access abstraction API
  38. DBD::SQLite: Perl DBI Interface to SQLite
  39. PySQLite: Python bindings for SQLite
  40. SQLite/Ruby: Ruby bindings for SQLite

References

Wikimedia Commons has media related to SQLite.
This article is issued from Wikipedia - version of the 11/30/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.