SQLite 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.[1]

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

Table of Contents

Introduction
Downloading and using
SQL standard divergences

API Tutorial

Introductory exercise

Command-line tool Reference

sqlite3
sqldiff
sqlite3_analyzer

See also

References

  1. 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.
  2. "Most Widely Deployed SQL Database Estimates". SQLite.org. https://sqlite.org/mostdeployed.html. Retrieved May 11, 2011.
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.