Hello,
I have two programs that access same database (sqlite 3). One program Write to database, other one only Reads from db (no write).

And problem is that program 1 (that WRITE/READ to/from db) don't write information to db when program 2 (only READ) opens db.

In program 2 I have set QSqlDatabase.setConnectOptions( "QSQLITE_OPEN_READONLY" );

Any idea how to open same db twice, once in WRITE/READ and second one only in READ ONLY, so in second program I can query all changes etc., and in first one I can still write data to db, or is it impossible?