Self-contained, embeddable, zero-configuration SQL database engine

SQLite (64-bit)

SQLite (64-bit)

  -  1.3 MB  -  Freeware
  • Latest Version

    SQLite 3.46.1 (64-bit) LATEST

  • Review by

    Daniel Leblanc

  • Operating System

    Windows XP64 / Vista64 / Windows 7 64 / Windows 8 64 / Windows 10 64 / Windows 11

  • User Rating

    Click to vote
  • Author / Product

    Richard Hipp / External Link

  • Filename

    sqlite-dll-win-x64-3460100.zip

SQLite 64-bit is an in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. The code for the software is in the public domain and is thus free for use for any purpose, commercial or private. Download SQLite Offline Installer Setup 64bit for Windows PC! SQLite 64-bit is the most widely deployed database in the world with more applications than we can count, including several high-profile projects.

Features and Highlights
  • Transactions are atomic, consistent, isolated, and durable (ACID) even after system crashes and power failures.
  • Zero-configuration - no setup or administration needed.
  • Full SQL implementation with advanced features like partial indexes and common table expressions. (Omitted features)
  • A complete database is stored in a single cross-platform disk file. Great for use as an application file format.
  • Supports terabyte-sized databases and gigabyte-sized strings and blobs.
  • Small code footprint: less than 500KiB fully configured or much less with optional features omitted.
  • Simple, easy to use API.
  • Written in ANSI-C. TCL bindings included. Bindings for dozens of other languages available separately.
  • Well-commented source code with 100% branch test coverage.
  • Available as a single ANSI-C source-code file that is easy to compile and hence is easy to add to a larger project.
  • Self-contained: no external dependencies.
  • Cross-platform: Android, *BSD, iOS, Linux, Mac, Solaris, VxWorks, and Windows (Win32, WinCE, WinRT) are supported out of the box. Easy to port to other systems.
  • Sources are in the public domain. Use it for any purpose.
  • It comes with a standalone command-line interface (CLI) client that can be used to administer SQ Lite databases.
Also Available: SQLite (32-bit) and SQLite for Mac

  • SQLite 3.46.1 (64-bit) Screenshots

    The images below have been resized. Click on them to view the screenshots in full size.

    SQLite 3.46.1 (64-bit) Screenshot 1

What's new in this version:

- Improved robustness while parsing the tokenize= arguments in FTS5. Forum post 171bcc2bcd
- Enhancements to covering index prediction in the query planner. Add early detection of over-prediction of covering indexes so that sqlite3_prepare() will return an error rather than just generate bad bytecode. Forum post e60e4c295d22f8ce.
- Do not let the number of terms on a VALUES clause be limited by SQLITE_LIMIT_COMPOUND_SELECT, even if the VALUES clause contains elements that appear to be variables due to double-quoted string literals
- Fix the window function version of group_concat() so that it returns an empty string if it has one or more empty string inputs
- In FTS5 secure-delete mode, fix false-positive integrity-check reports about corrupt indexes
- Syntax errors in ALTER TABLE should always return SQLITE_ERROR. In some cases, they were formerly returning SQLITE_INTERNAL

JavaScript/WASM:
- Fix a corruption-causing bug in the JavaScript "opfs" VFS
- Work around a couple of browser-specific OPFS quirks
- Other minor fixes