Global web icon
sqlite.org
https://sqlite.org/download.html
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 contents and download historical versions of individual files or ZIP archives of historical check-ins. You can also clone the entire repository.
Global web icon
sqlite.org
https://sqlite.org/
SQLite Home Page
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.
Global web icon
sqlite.org
https://sqlite.org/quickstart.html
SQLite In 5 Minutes Or Less
The Command Line Interface or "CLI" is a simple command-line program that accepts SQL input text and passes it through to the SQLite database engine core to be executed. The name of the CLI program is "sqlite3" (or "sqlite3.exe" on Windows). Use the CLI for manual interactions with a database. At a shell or DOS prompt, enter: " sqlite3 test.db ".
Global web icon
sqlite.org
https://sqlite.org/features.html
Features Of SQLite
Features Of SQLite Transactions are atomic, consistent, isolated, and durable (ACID) even after system crashes and power failures. Zero-configuration - no setup or administration needed. Full-featured SQL implementation with advanced capabilities like partial indexes, indexes on expressions, JSON, common table expressions, and window functions.
Global web icon
sqlite.org
https://sqlite.org/lang.html
Query Language Understood by SQLite
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 document attempts to describe precisely what parts of the SQL language SQLite does and does not support. A list of SQL keywords is also provided.
Global web icon
sqlite.org
https://www3.sqlite.org/docs.html
Documentation - SQLite
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 of how the new locking code in version 3 increases concurrency and decreases the problem of writer starvation.
Global web icon
sqlite.org
https://sqlite.org/json1.html
JSON Functions And Operators - SQLite
1. Overview By default, SQLite supports thirty functions and two operators for dealing with JSON values. There are also four table-valued functions that can be used to decompose a JSON string. All of the functions listed below have the SQLITE_INNOCUOUS and SQLITE_DETERMINISTIC flags.
Global web icon
sqlite.org
https://sqlite.org/releaselog/3_50_0.html
SQLite Release 3.50.0 On 2025-05-29
SQLite Release 3.50.0 On 2025-05-29 Add the sqlite3_setlk_timeout () interface which sets a separate timeout, distinct from the sqlite3_busy_timeout (), for blocking locks on builds that support blocking locks.
Global web icon
sqlite.org
https://sqlite.org/lang_datefunc.html
Date And Time Functions - SQLite
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 timediff () function takes exactly two arguments which are both time-values.
Global web icon
sqlite.org
https://www3.sqlite.org/cli.html
Command Line Shell For SQLite
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 application that accepts user input and passes it down into the SQLite library for evaluation. Understand that these are two different things. When somebody says "SQLite" or "sqlite3" they might be referring to either ...