
SQLite Home Page
Dec 10, 2025 · SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine. SQLite is the most used database engine in the world.
SQLite Download Page
See the How To Compile SQLite page for additional information on how to use the raw SQLite source code. Note that a recent version of Tcl is required in order to build from the repository sources.
About SQLite
Nov 13, 2025 · SQLite is an in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. The code for SQLite is in the public domain and is …
Features Of SQLite
Nov 13, 2025 · SQLite has a small code footprint, makes efficient use of memory, disk space, and disk bandwidth, is highly reliable, and requires no maintenance from a Database Administrator.
Documentation - SQLite
Multi-threaded Programs and SQLite → SQLite is safe to use in multi-threaded programs. This document provides the details and hints on how to maximize performance.
SQLite In 5 Minutes Or Less
Below is a simple C program that demonstrates how to use the C/C++ interface to SQLite. The name of a database is given by the first argument and the second argument is one or more SQL statements …
SQLite Release 3.50.2 On 2025-06-28
May 29, 2025 · A complete list of SQLite releases in a single page and a chronology are both also available. A detailed history of every check-in is available at SQLite version control site.
Query Language Understood by SQLite
Apr 1, 2024 · SQL As Understood By SQLite SQLite understands most of the standard SQL language. But it does omit some features while at the same time adding a few features of its own. This …
History Of SQLite Releases
Feb 18, 2025 · This page provides a chronological history of SQLite releases, detailing the development and evolution of this widely-used database engine.
Command Line Shell For SQLite
Nov 24, 2025 · On startup, the sqlite3 program will show a brief banner message then prompt you to enter SQL. Type in SQL statements (terminated by a semicolon), press "Enter" and the SQL will be …