They also have a (one-time fee) encryption extension.
Comment on Stop using MySQL in 2026, it is not true open source
dan@upvote.au 3 weeks agoOne of SQLite’s recommended use cases is as an alternate to proprietary binary formats: sqlite.org/appfileformat.html. Programs often store data in binary files for performance, but you get a lot of the same functionality included with SQLite (fast random access, concurrent usage, atomicity, updates that don’t need to rewrite the whole file, etc) without having to implement a file format yourself.
0x0@lemmy.zip 3 weeks ago
hoppolito@mander.xyz 3 weeks ago
Fascinating read, I should definitely also make way more use of sqlite for little side projects.
Thanks for the link!