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


Ibis 8 Adds Streaming
05/03/2024

Ibis 8.0 has been released with stream processing backends. The new release includes Apache Flink as a streaming backend, and RisingWave, a streaming database backend. There's also a new batch backend [ ... ]



AWS Adds Support For Llama2 And Mistral To SageMaker Canvas
12/03/2024

As part of its effort to enable its customers to use generative AI for tasks such as content generation and summarization, Amazon has added these state of the art LLMs to SageMaker Canvas.


More News

 

raspberry pi books

 

Comments




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

Last Updated ( Thursday, 16 February 2017 )