Home Email My Account ☎ 480-624-2500

SQLITE

August 31, 2017

SQLite is a self-contained, high-reliability, embedded, full-featured, public-domain, SQL database engine. SQLite is the most used database engine in the world.

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

SQLite is Transactional. A transactional database is one in which all changes and queries appear to be Atomic, Consistent, Isolated, and Durable (ACID).

SQLite understands most of the standard SQL language.