SQLite 3.41.1 released

Started by JeGX, March 15, 2023, 06:33:35 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

JeGX

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. SQLite is the most widely deployed database in the world with more applications than we can count, including several high-profile projects.

Release notes:
https://www.sqlite.org/releaselog/3_41_1.html

Downloads:
https://www.sqlite.org/download.html

Changes:
Quote- Provide compile-time options -DHAVE_LOG2=0 and -DHAVE_LOG10=0 to enable SQLite to be compiled on systems that omit the standard library functions log2() and log10(), repectively.

- Ensure that the datatype for column t1.x in "CREATE TABLE t1 AS SELECT CAST(7 AS INT) AS x;" continues to be INT and is not NUM, for historical compatibility.

- Enhance PRAGMA integrity_check to detect when extra bytes appear at the end of an index record.

- Fix various obscure bugs reported by the user community. See the timeline of changes for details.