7

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

4

1 回答 1

6

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();.

于 2012-10-02T07:34:16.537 回答