I set up an SQLITE db in Qt via:

//...
QSqlDatabase::addDatabase(driverType);
mDatabase.setDatabaseName(dbName);
//...

but can't seem to find the db file afterwards.

Does anyone know where QT places the sqlite files so that I can query it via the sqlite command-line tool?

Cheers

Graham