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

    Mar 16, 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. …

  2. SQLite Download Page

    sqlite- product - version.zip sqlite- product - version.tar.gz sqlite- product - os - cpu - version.zip sqlite- product - date.zip

  3. SQLite In 5 Minutes Or Less

    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 ". This will create a …

  4. Documentation - SQLite

    Database Hash (dbhash.exe) → This program demonstrates how to compute a hash over the content of an SQLite database. SQLite Database Analyzer (sqlite3_analyzer.exe) → This stand-alone program …

  5. Command Line Shell For SQLite

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

  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. SQLite Download Page

    Build Product Names and Info Build products are named using one of the following templates: sqlite- product - version.zip sqlite- product - version.tar.gz sqlite- product - os - cpu - version.zip sqlite- …

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

    May 31, 2025 · The constructor for sqlite3. sqlite3_prepare () → Compile SQL text into byte-code that will do the work of querying or updating the database. The constructor for sqlite3_stmt. sqlite3_bind …

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

  10. Query Language Understood by SQLite

    Apr 1, 2024 · 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 …