Search code examples
sqliteqt4

How to find out version SQLite in Qt?


I want to discover SQLite version in Qt 4.6.2 & 4.7.4 How to find out version SQLite in Qt?


Solution

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

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