About 47,300 results
Open links in new tab
  1. SQLite Home Page

    What Is SQLite? 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

    Note that a recent version of Tcl is required in order to build from the repository sources. The amalgamation source code files (the "sqlite3.c" and "sqlite3.h" files) build products and are not …

  3. Documentation - SQLite

    SQLite Database Analyzer (sqlite3_analyzer.exe) → This stand-alone program reads an SQLite database and outputs a file showing the space used by each table and index and other statistics.

  4. Command Line Shell For SQLite

    The SQLite project provides a simple command-line program named sqlite3 (or sqlite3.exe on Windows) that allows the user to manually enter and execute SQL statements against an …

  5. SQLite In 5 Minutes Or Less

    The function calls to pay attention to here are the call to sqlite3_open () on line 22 which opens the database, sqlite3_exec () on line 28 that executes SQL commands against the database, …

  6. About SQLite

    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 thus …

  7. An Introduction To The SQLite C/C++ Interface

    May 31, 2025 · It is important to realize that neither sqlite3_exec () nor sqlite3_get_table () do anything that cannot be accomplished using the core routines. In fact, these wrappers are …

  8. Query Language Understood by SQLite

    Apr 1, 2024 · The routines sqlite3_prepare_v2 (), sqlite3_prepare (), sqlite3_prepare16 (), sqlite3_prepare16_v2 (), sqlite3_exec (), and sqlite3_get_table () accept an SQL statement list …

  9. SQLite Release 3.50.2 On 2025-06-28

    May 29, 2025 · Fix sqlite3_setlk_timeout () to use a blocking lock when opening a snapshot transaction and when blocked by another process running recovery. Other minor fixes that …

  10. JSON Functions And Operators - SQLite

    Oct 3, 2025 · 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 …