How to find out SQLite version in Qt?

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?

+7
source share
1 answer

If you have direct access to the SQLite C API, call sqlite3_libversion() .

If you have only SQL access, run the SELECT sqlite_version(); query SELECT sqlite_version(); .

+6
source

All Articles