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

SQLite (64-bit)

SQLite (64-bit)

  -  1.3 MB  -  Freeware
  • Latest Version

    SQLite 3.46.0 (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-3460000.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.0 (64-bit) Screenshots

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

    SQLite 3.46.0 (64-bit) Screenshot 1

What's new in this version:

Enhance PRAGMA optimize in multiple ways, to make it simpler to use:
- PRAGMA optimize automatically implements a temporary analysis limit to prevent excess runtime on large databases
- Added the new 0x10000 bitmask option to check for updates on all tables
- Automatically re-analyze tables that do not have sqlite_stat1 entries

Enhancements to the date and time functions:
- The strftime() SQL function now supports %G, %g, %U, and %V
- New modifiers 'ceiling' and 'floor' control the algorithm used to resolve ambiguous dates when shifting a date by an integer number of months and/or years
- The 'utc' and 'localtime' modifiers are now no-ops if SQLite knows that the time is already in UTC or in the localtime, respectively
- Add support for underscore ("_") characters between digits in numeric literals
- Add the json_pretty() SQL function

Query planner improvements:
- The "VALUES-as-coroutine" optimization enables INSERT statements with thousands of rows in the VALUES clause to parse and run in about half the time and using about half as much memory
- Allow the use of an index for queries like "SELECT count(DISTINCT col) FROM ...", even if the index records are not smaller than the table records
- Improved recognition of cases where the value of an SQL function is constant because all its arguments are constant
- Enhance the WHERE-clause push-down optimization so that it is able to push down WHERE clause terms containing uncorrelated subqueries
- Allocate additional memory from the heap for the SQL parser stack if that stack overflows, rather than reporting a "parser stack overflow" error

JSON changes:
- Allow ASCII control characters within JSON5 string literals
- Fix the -> and ->> operators so that when the right-hand side operand is a string that looks like an integer it is still treated as a string, because that is what PostgreSQL does
- Allow large hexadecimal literals to be used as the DEFAULT value to a table column