I'm wondering if you can take some SQLite databases setup like this:
sql.setDatabaseName("pva.db");
sql2.setDatabaseName(":memory:");
QSqlDatabase sql = QSqlDatabase::addDatabase("QSQLITE","pva");
sql.setDatabaseName("pva.db");
QSqlDatabase sql2 = QSqlDatabase::addDatabase("QSQLITE","pva-cache");
sql2.setDatabaseName(":memory:");
To copy to clipboard, switch view to plain text mode
and then "copy" the one to the other?
and is there a way to store a ":memory:" database
as a file when done working with it?
Bookmarks