Jump to content

SQLite: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Jaguar83 (talk | contribs)
m Added link for bindings in opening summary (see talk for discussion of grammar in that statement)
No edit summary
Line 101: Line 101:
* [http://sqlitebrowser.sourceforge.net/ SQLite Database Browser] is a freeware, public domain, open source visual tool used to create, design and edit database files compatible with SQLite.
* [http://sqlitebrowser.sourceforge.net/ SQLite Database Browser] is a freeware, public domain, open source visual tool used to create, design and edit database files compatible with SQLite.
* [[SQLite Manager]] is a [[FireFox]] Add-on for managing SQLite databases
* [[SQLite Manager]] is a [[FireFox]] Add-on for managing SQLite databases
* [http://www.adminer.org/ Adminer] is an open source PHP front-end for managing SQLite (and a number of other) database back-ends.


== See also ==
== See also ==

Revision as of 01:11, 8 March 2012

Developer(s)D. Richard Hipp
Initial releaseAugust 2000 (2000-08)
Stable release
3.7.10 / January 16, 2012; 12 years ago (2012-01-16)
Repository
Written inC
Operating systemCross-platform
Size~275 kB
TypeRDBMS (embedded)
LicensePublic domain[1]
Websitesqlite.org

SQLite /ˌɛskjuːɛlˈlaɪt/[2] (/ˈsiːkwɛl.laɪt/)[3] is an ACID-compliant embedded relational database management system contained in a small (~275 kB)[4] C programming library.

SQLite implements most of the SQL standard, using a dynamically and weakly typed SQL syntax that does not guarantee the domain integrity. In contrast to other database management systems, SQLite is not a separate process that is accessed from the client application, but an integral part of it. SQLite read operations can be multitasked, though writes can only be performed sequentially.

The source code for SQLite is in the public domain.[1][5]

SQLite is a popular choice for local/client storage on web browsers. It has many bindings to programming languages. It is arguably the most widely deployed database engine, as it is used today by several widespread browsers, operating systems, and embedded systems, among others.[6]

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.

History

D. Richard Hipp designed SQLite in the spring of 2000 while working for General Dynamics on contract with the United States Navy.[7] Hipp was designing software used on board guided missile destroyer ships, which were originally based on HP-UX with an IBM Informix database back-end. The design goals of SQLite were to allow the program to be operated without installing a database management system or administration. In August 2000, version 1.0 of SQLite was released, based on gdbm (GNU Database Manager). SQLite 2.0 replaced gdbm with a custom B-tree implementation, adding support for transactions. 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.[8]

Features

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

SQLite uses an unusual type system for a 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.[10] However, it can be implemented with constraints like CHECK(typeof(x)='integer').[7]

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 WAL is turned on enabling concurrent reads and writes.[11]

A standalone program called sqlite3 is provided that can be used to create a database, define tables within it, insert and change rows, run queries and manage a SQLite database file. This program is a single executable file on the host machine. It also serves as an example for writing applications that use the SQLite library.

SQLite is a popular choice for local/client SQL storage within a web browser and within a rich internet application framework;[12] most notably the leaders in this area (Google Gears,[13] Adobe AIR,[14] and Firefox[15]) embed SQLite.

SQLite full Unicode support is optional.[16]

SQLite also has bindings for a large number of programming languages, including BASIC, C, C++, Clipper//Harbour, Common Lisp, C#, Curl, D, Delphi, Free Pascal, Haskell, Java, Livecode, Lua, newLisp, Objective-C (on Mac OS X and iOS), OCaml, Perl, PHP, Pike, Python,[17] REBOL, R, REALbasic, Ruby,[18] Scheme, Smalltalk, Tcl, Visual Basic, and JavaScript[19]. An ADO.NET adapter, initially developed by Robert Simpson, is maintained jointly with the SQLite developers since April 2010.[20] An ODBC driver has been developed and is maintained separately by Christian Werner.[21] Werner's ODBC driver is the recommend connection method for accessing SQLite from OpenOffice.[22] There is also a COM (ActiveX) wrapper making SQLite accessible on Windows to scripted languages such as JScript and VBScript. This adds database capabilities to HTML Applications (HTA).[23]

SQLite has automated regression testing prior to each release.[24] 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.

Development

SQLite development stores revisions of its source code in Fossil, a distributed version control system that is itself built upon a SQLite database.[25]

Adoption

Use in web browsers

  • Mozilla Firefox and Mozilla Thunderbird store a variety of configuration data (bookmarks, cookies, contacts etc.) in internally managed SQLite databases, and even offer an add-on to manage SQLite databases.
  • Google's Chrome browser
  • The Opera Internet suite and browser uses SQLite 3.6.23 for managing WebSQL databases. This is noted in opera:about, although without the mention of WebSQL (databases can be managed through opera:webdatabases)
  • Embedding SQLite in web browsers has resulted in adding SQLite to the HTML5 Web Storage standard and after discussion inside the W3C Web Applications Working Group[29] the WebSimpleDB API proposal was developed.[30]

Use in mobile devices

Due to its small size, SQLite is well suited to embedded systems, and is also included in:

However, it is also suitable for desktop operating systems; Apple adopted it as an option in Mac OS X's Core Data API from the original implementation in Mac OS X 10.4 onwards, and also for administration of videos and songs on the iPhone.

Management

  • SQLiteManager is a commercial tool used to create, design and edit database files compatible with SQLite.
  • SQLiteConverter is a commercial tool used to converted different database formats to SQLite.
  • SQLiteSync is a commercial tool used to merge and diff two different SQLite databases.
  • cubeSQL is commercial DBMS compatible with SQLite.
  • SQLite Database Browser is a freeware, public domain, open source visual tool used to create, design and edit database files compatible with SQLite.
  • SQLite Manager is a FireFox Add-on for managing SQLite databases
  • Adminer is an open source PHP front-end for managing SQLite (and a number of other) database back-ends.

See also

Notes

  1. ^ a b "SQLite Copyright". sqlite.org. Retrieved 17 May 2010.
  2. ^ D. Richard Hipp (presenter) (2006-05-31). An Introduction to SQLite (Flash Video). Google Inc. Event occurs at 00:01:14. Retrieved 2010-03-23. [...] ess-kju-ellite [...]
  3. ^ D. Richard Hipp (presenter) (2006-05-31). An Introduction to SQLite (Flash Video). Google Inc. Event occurs at 00:48:15. Retrieved 2010-03-23. [...] sequelite [...]
  4. ^ "Distinctive Features Of SQLite". SQLite. March 3, 2008. Retrieved April 5, 2010.
  5. ^ "The source code for SQLite is in the public domain". Sqlite.org. Retrieved 2011-05-11.
  6. ^ "Most Widely Deployed SQL Database Estimates". Sqlite.org. Retrieved 2011-05-11.
  7. ^ a b Owens, Michael (2006). The Definitive Guide to SQLite. Apress. doi:10.1007/978-1-4302-0172-4_1. ISBN 978-1-59059-673-9.
  8. ^ "Interview: Richard Hipp on UnQL, a New Query Language for Document Databases". InfoQ. August 4, 2011. Retrieved October 5, 2011.
  9. ^ "SQL Features That SQLite Does Not Implement". SQLite. January 1, 2009. Retrieved October 14, 2009.
  10. ^ "Frequently Asked Questions". SQLite. January 26, 2009. Retrieved February 7, 2009.
  11. ^ "Write Ahead Logging in SQLite 3.7". SQLite. 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
  12. ^ "Web SQL Database". World Wide Web Consortium. December 22, 2009. Retrieved January 26, 2010. all interested implementors have used the same SQL backend (Sqlite)
  13. ^ "Gears API". Database API. Google. Retrieved April 2, 2010.
  14. ^ Coenraets, Christophe (January 19, 2010). "Using the SQLite database access API in Adobe AIR". Adobe. Retrieved April 2, 2010.
  15. ^ "DOM Storage". Mozilla Developer Center. Retrieved 2010-02-09.
  16. ^ "Case-insensitive matching of Unicode characters does not work". SQLite Frequently Asked Questions. Sqlite.org. Retrieved 2011-05-11.
  17. ^ PySQLite: Python bindings for SQLite
  18. ^ SQLite/Ruby: Ruby bindings for SQLite
  19. ^ JSPDO JavaScript database access abstraction API
  20. ^ http://system.data.sqlite.org/index.html/doc/trunk/www/index.wiki
  21. ^ http://www.ch-werner.de/sqliteodbc/
  22. ^ http://documentation.openoffice.org/HOW_TO/data_source/SQLite.pdf
  23. ^ "sqlite — Sqlite Wrappers". SQLite. February 7, 2009. Retrieved February 7, 2009.
  24. ^ "How SQLite Is Tested". SQLite. Retrieved September 12, 2009.
  25. ^ "Fossil: Fossil Performance". Fossil-scm.org. 2009-08-23. Retrieved 2009-09-12.
  26. ^ "Skype client using SQLite?". Mail-archive.com. 2007-08-28. Retrieved 2010-06-14.
  27. ^ "Well-Known Users of SQLite". Sqlite.org. Retrieved 2010-06-14.
  28. ^ "Possible virus infection by Xmarks?". virusremoval.pro. 2010-06-23. Retrieved 2010-07-28.
  29. ^ "Web Storage & SQL". W3C Web Applications Working Group mailing list. Retrieved 2011-02-10.
  30. ^ "W3C WebSimpleDB API". w3.org. Retrieved 2011-02-10.
  31. ^ "Well-known Users of SQLite". Sqlite.org. Retrieved 2010-06-14.

References