About 7,280,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. 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 …

  4. 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" …

  5. 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 …

  6. 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 …

  7. 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) …

  8. 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 …

  9. 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 …

  10. 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 …