I want to discover SQLite version in Qt 4.6.2 & 4.7.4 How to find out version SQLite in Qt?
If you have direct access to the SQLite C API, call sqlite3_libversion().
sqlite3_libversion()
If you have only SQL access, run the query SELECT sqlite_version();.
SELECT sqlite_version();