I am using c++ QSQLDatabase (SQLITE driver) to interact with an sqlite3 database. The c++ code uses queries that have the database's name before the table name like this :
SELECT *
FROM database_name.table_name ...
But the query is rejected with an error:
no such table : database_name.table_name
No way to change the query formats, is there any way in QSQLDatabase / SQLITE to make these kind of queries valid (without changing the queries)
Thank you for your help