About 77 results
Open links in new tab
  1. SQLite Home Page

    Jan 9, 2026 · 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 is …

  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. 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, and …

  4. SQLite Download Page

    The amalgamation source code files (the "sqlite3.c" and "sqlite3.h" files) build products and are not contained in raw source code tree. https://www.sqlite.org/cgi/src (Dallas)

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

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

  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 implemented purely …

  8. Features Of SQLite

    Nov 13, 2025 · Features Of SQLite Transactions are atomic, consistent, isolated, and durable (ACID) even after system crashes and power failures. Zero-configuration - no setup or administration …

  9. Command Line Shell For SQLite

    Jan 3, 2026 · 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 SQLite …

  10. SQLite Documentation

    This document explains how to use WAL mode for improved performance. Tools Command-Line Shell (sqlite3.exe) → Notes on using the "sqlite3.exe" command-line interface that can be used to create, …