SQLite 3.17 Adds SHA1 Extension
Written by Kay Ewbank   
Thursday, 16 February 2017

The latest regular update to SQLite, the widely used embeddable SQL database library that is found in many memory constrained gadgets such as cellphones, PDAs, and MP3 players, has been released with performance improvements and an SHA1 extension.

SQLite is an in-process library that implements a self-contained, serverless, transactional SQL database engine. The entire SQL database with multiple tables, indexes, triggers, and views, is contained in a single disk file.

The new  version achieves a performance improvement of around 25 percent when using the R-Tree extension. This improvement was achieved by using more compiler built-ins and other optimizations.

 

sqlitebrowser

 

More generally, there's a performance improvement of around 1.5 percent due to an increase in the default size of the lookaside memory buffer allocated for each database connection. This has been increased from 64,000 bytes to 120,000 bytes. While this only adds 56KB of extra memory per connection, If you have applications that are more sensitive to memory utilization than performance, you can reverse this change at compile-time, at start-time, or at run-time. 

The new SHA1 extension implements two functions that compute SHA1 hashes. The new sha1(X) function computes the SHA1 hash of the input X, or NULL if X is NULL, while the sha1_query(Y) function evalutes all queries in the SQL statements of Y and returns a hash of their results. SHA-1 (Secure Hash Algorithm 1) is a cryptographic hash function designed by the US National Security Agency. It produces a 160-bit hash value known as a message digest.

Other improvements include an enhanced LEMON parser generator so that it can store the parser object as a stack variable rather than allocating space from the heap and make use of that enhancement in the amalgamation. Lemon is an LALR(1) parser generator for C that does the same job as bison and yacc.

sqlite

More Information

SQLite Release Notes

Related Articles

SQLite 3.16 Adds Pragma Functions  

SQLite 3.15 Adds Row Value Support

Portable Version Of DB Browser For SQLite

SQLite 3.9 

SQLite Updated

 

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


Insights From AI Index 2024 Report
17/04/2024

Published this week, the latest Stanford HAI AI Index report tracks worldwide trends in AI. A mix of its new research and findings from many other sources, it provides a wide ranging look at how  [ ... ]



Rust Twice As Productive As C++
03/04/2024

Google director of engineering, Lars Bergstrom, gave a talk at the recent Rust Nation UK conference and claimed that Rust was twice as productive as C++. Given how good Google is at C++, this is quite [ ... ]


More News

 

raspberry pi books

 

Comments




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

Last Updated ( Thursday, 16 February 2017 )