SQLite 3.43 Released
Written by Kay Ewbank   
Tuesday, 05 September 2023

SQLite 3.43 has been released with new support for Contentless-Delete FTS5 Indexes, as well as better JSON processing.

SQLite is a widely deployed database, and is compact, with a library size of under 600KB with all features enabled. It is an in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. In addition, the developers describe it as a language-agnostic development environment, with high-quality language kernels for languages including Python, C++, R and Julia.

sqlite

The first major improvement in this release is support for Contentless-Delete FTS5 Indexes. This is a variety of FTS5 full-text search index that omits storing the content that is being indexed while also allowing records to be deleted. 

Normally, when a row is inserted into an FTS5 table, in addition to building the index, FTS5 makes a copy of the original row content. When column values are requested from the FTS5 table, those values are read from that private copy of the content. The "content" option may be used to create an FTS5 table that stores only FTS full-text index entries. Because the column values themselves are usually much larger than the associated full-text index entries, this can save significant database space.

The next improvement to SQLite is to the JSON processing, and the developers say this results in a two times performance improvement for some kinds of processing on large JSON strings.

The query planner has also received attention. Specifically, the LEFT JOIN strength reduction optimization has been generalized so that it works for RIGHT and FULL JOINs as well. To reflect this, the feature has been renamed as an OUTER JOIN strength reduction, and the theorem prover has been enhanced in the OUTER JOIN strength reduction optimization so that it returns fewer false-negatives.

Elsewhere, SQLite 3.43 now has a timediff() SQL function and an octet_length(X) SQL function. SQL 3.43 is available now.

sqlite

More Information

SQLite Site

Related Articles

SQLite Improves Nulls Support

SQLite 3.27 Introduces Vacuum Into

SQLite Adds Zipfile Support

SQLite 3.20 Improves Query Planner

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

Banner


FSF Opens Nominations For Free Software Awards
18/02/2025

The Free Software Foundation (FSF) has announced that nominations are open for this year's Free Software Awards. These prestigious awards demonstrate appreciation of the efforts of members of the free [ ... ]



C++ For The 21st Century
17/02/2025

C++ is a language under attack from newer languages such as Rust and from more primitive languages such as C, yet it has a large community of committed and enthusiastic users. How can things be made b [ ... ]


More News

espbook

 

Comments




or email your comment to: comments@i-programmer.info