|
|
|
|
|
by kccqzy
13 days ago
|
|
SQLite is slightly different from Rust in that it is a data container. It’s somewhat more common for people to move SQLite database files from one machine to another and then inspect using the command line tool. And it is often the case that the embedded SQLite version in your app is a newer version than whatever version /usr/bin/sqlite3 happens to be. Adding editions to your SQLite file will probably break this use case of using an older version to read a database written by a newer version because it does not know what has changed in a new edition. Not a big deal though. Probably just need better ops to bundle the command-line utility that’s the same version as what’s used in your app. |
|