I want to find the version of SQLite in Qt 4.6.2 and 4.7.4. How do I find out the version of 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 SELECT sqlite_version(); query SELECT sqlite_version(); .
SELECT sqlite_version();