I have an application using:
QString databasePath = QStandardPaths::writableLocation(QStandardPaths::ConfigLocation);
databasePath += "/MyApp.db";
qApp->setProperty("MYAPP_DATABASE_PATH", databasePath);
to create a path for the database
Is there a way to make another application use the same path to access the same database?