
SQLite Home Page
Nov 22, 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
The SQLite source code is maintained in three geographically-dispersed self-synchronizing Fossil repositories that are available for anonymous read-only access. Anyone can view the repository …
SQLite Documentation
Customizing And Porting SQLite → This document explains how to customize the build of SQLite and how to port SQLite to new platforms. Locking And Concurrency In SQLite Version 3 → A description …
Command Line Shell For SQLite
6 days ago · 1.1. SQLite command-line program versus the SQLite library The SQLite library is code that implements an SQL database engine. The "sqlite3" command-line program or "CLI" is an …
Date And Time Functions - SQLite
Nov 13, 2025 · The first six date and time functions take an optional time-value as an argument, followed by zero or more modifiers. The strftime () function also takes a format string as its first argument. The …
Recovering Data From A Corrupt SQLite Database
May 31, 2025 · However, it is possible to corrupt an SQLite database. For example, hardware malfunctions can damage the database file, or a rogue process can open the database and overwrite …
Pragma statements supported by SQLite
Nov 13, 2025 · The PRAGMA statement is an SQL extension specific to SQLite and used to modify the operation of the SQLite library or to query the SQLite library for internal (non-table) data. The …
SQLite Download Page
The SQLite source code is maintained in three geographically-dispersed self-synchronizing Fossil repositories that are available for anonymous read-only access. Anyone can view the repository …
Write-Ahead Logging - SQLite
May 31, 2025 · 1. Overview The default method by which SQLite implements atomic commit and rollback is a rollback journal. Beginning with version 3.7.0 (2010-07-21), a new "Write-Ahead Log" …
An Introduction To The SQLite C/C++ Interface
May 31, 2025 · 7. Configuring SQLite The default configuration for SQLite works great for most applications. But sometimes developers want to tweak the setup to try to squeeze out a little more …