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

SQLite (32-bit)

SQLite (32-bit)

  -  1 MB  -  Freeware
  • Latest Version

    SQLite 3.47.0 (32-bit) LATEST

  • Review by

    Daniel Leblanc

  • Operating System

    Windows XP / Vista / Windows 7 / Windows 8 / Windows 10

  • User Rating

    Click to vote
  • Author / Product

    Richard Hipp / External Link

  • Filename

    sqlite-dll-win-x86-3470000.zip

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 free for use for any purpose, commercial or private. The software is the most widely deployed database in the world with more applications than we can count, including several high-profile projects. SQLite Free Download Latest Version for Windows PC. It is a full offline setup installer of the tool.

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 (64-bit) and SQLite for Mac

  • SQLite 3.47.0 (32-bit) Screenshots

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

    SQLite 3.47.0 (32-bit) Screenshot 1

What's new in this version:

- Allow arbitrary expressions in the second argument to the RAISE function
- If the RHS of the ->> operator is negative, then access array elements counting from the right
- Fix a problem with rolling back hot journal files in the seldom-used unix-dotfile VFS
- FTS5 tables can now be dropped even if they use a non-standard tokenizer that has not been registered
- Fix the group_concat() aggregate function so that it returns an empty string, not a NULL, if it receives a single input value which is an empty string
- Enhance the generate_series() table-valued function so that it is able to recognize and use constraints on its output value
- Preupdate hooks now recognize when a column added by ALTER TABLE ADD COLUMN has a non-null default value

Performance optimizations:
- Improved reuse of subqueries associated with the IN operator, especially when the IN operator has been duplicated due to predicate push-down
- Use a Bloom filter on subqueries on the right-hand side of the IN operator, in cases where that seems likely to improve performance
- Ensure that queries like "SELECT func(a) FROM tab GROUP BY 1" only invoke the func() function once per row
- No attempt is made to create automatic indexes on a column that is known to be non-selective because of its use in other indexes that have been analyzed
- Adjustments to the query planner so that it produces better plans for star queries with a large number of dimension tables
- Add the "order-by-subquery" optimization, that seeks to disable sort operations in outer queries if the desired order is obtained naturally due to ORDER BY clauses in subqueries
- The "indexed-subtype-expr" optimization strives to use expressions that are part of an index rather than recomputing the expression based on table values, as long as the query planner can prove that the subtype of the expression will never be used.
- Miscellaneous coding tweaks for faster runtimes.

Enhancements to SQLite-related command-line programs:
- Add the experimental sqlite3_rsync program
- Add extension functions median(), percentile(), percentile_cont(), and percentile_disc() to the CLI
- Add the .www dot-command to the CLI
- The sqlite3_analyzer utility now provides a break-out of statistics for WITHOUT ROWID tables
- The sqldiff utility avoids creating an empty database if its second argument does not exist
- Enhance the sqlite_dbpage table-valued function such that INSERT can be used to increase or decrease the size of the database file
- SQLite no longer makes any use of the "long double" data type, as hardware support for long double is becoming less common and long double creates challenges for some compiler tool chains. Instead, SQLite uses Dekker's algorithm when extended precision is needed.
- The TCL Interface for SQLite supports TCL9. Everything probably still works for TCL 8.5 and later, though this is not guaranteed. Users are encouraged to upgrade to TCL9.

JavaScript/WASM:
- Fix a corruption-causing bug in the JavaScript "opfs" VFS
- Correct "mode=ro" handling for the "opfs" VFS
- Work around a couple of browser-specific OPFS quirks

FTS5 Changes:
- Add the fts5_tokenizer_v2 API and the locale=1 option, for creating custom locale-aware tokenizers and fts5 tables that may take advantage of them
- Add the contentless_unindexed=1 option, for creating contentless fts5 tables that store the values of any UNINDEXED columns persistently in the database
- Allow an FTS5 table to be dropped even if it uses a custom tokenizer whose implementation is not available