Skip to content

Commit

Permalink
upgrade SQLite3 to latest revision 3.37.0
Browse files Browse the repository at this point in the history
- please download latest mormot2static.7z binaries
  • Loading branch information
Arnaud Bouchez committed Dec 16, 2021
1 parent 4f3cecf commit 73a3e7a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/db/mormot.db.raw.sqlite3.pas
Original file line number Diff line number Diff line change
Expand Up @@ -2128,7 +2128,7 @@ TSqlite3Library = class
close: function(DB: TSqlite3DB): integer; cdecl;

/// Return the version of the SQLite database engine, in ascii format
// - currently returns '3.36.0', when used in conjunction with our
// - currently returns '3.37.0', when used in conjunction with our
// mormot.db.raw.sqlite3.static unit
// - if an external SQLite3 library is used, version may vary
// - you may use the VersionText property (or Version for full details) instead
Expand Down
4 changes: 2 additions & 2 deletions src/db/mormot.db.raw.sqlite3.static.pas
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{
*****************************************************************************
Statically linked SQLite3 3.36.0 engine with optional AES encryption
Statically linked SQLite3 3.37.0 engine with optional AES encryption
- TSqlite3LibraryStatic Implementation
- Encryption-Related Functions
Expand Down Expand Up @@ -1003,7 +1003,7 @@ function sqlite3_trace_v2(DB: TSqlite3DB; Mask: integer; Callback: TSqlTraceCall

const
// error message if statically linked sqlite3.o(bj) does not match this value
EXPECTED_SQLITE3_VERSION = '3.36.0';
EXPECTED_SQLITE3_VERSION = '3.37.0';

// where to download the latest available static binaries, including SQLite3
EXPECTED_STATIC_DOWNLOAD = 'https://synopse.info/files/mormot2static.7z';
Expand Down

0 comments on commit 73a3e7a

Please sign in to comment.