On 18 Nov 2013, at 3:38am, Peter Aronson <[email protected]> wrote: > It might be simpler to simply specify a minimum release of SQLite that must > be supported,
Actually this is how lots of apps specify their file format. Part of the file header is a version number. When the API opens the file it checks to see that its version is equal or higher to the version number encoded in the file. If not, it presents an error message. This means you don't have to encode complicated logic about which file version requires which abilities. All you need to do is compare two versions. It's neat. Simon. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

