28 lines
899 B
C++
28 lines
899 B
C++
|
#include "database.h"
|
||
|
#include <QSqlDatabase>
|
||
|
#include <QSqlError>
|
||
|
#include <QtConcurrent>
|
||
|
|
||
|
Database::Database(QObject *parent)
|
||
|
: QObject{parent}
|
||
|
, m_pool{}
|
||
|
{
|
||
|
m_pool.setMaxThreadCount(1);
|
||
|
m_pool.setExpiryTimeout(-1);
|
||
|
}
|
||
|
|
||
|
QFuture<void> Database::open(const QString &user, const QString &password)
|
||
|
{
|
||
|
return QtConcurrent::run(&m_pool, [this, user, password]() {
|
||
|
QString connectionName("main");
|
||
|
QSqlDatabase db = QSqlDatabase::addDatabase("QPSQL", connectionName);
|
||
|
db.setConnectOptions("service=camper; options=-csearch_path=camper,public");
|
||
|
if (!db.open(user, password)) {
|
||
|
const QString errorMessage(db.lastError().text());
|
||
|
db = QSqlDatabase(); // Otherwise removeDatabase complains is still being used.
|
||
|
QSqlDatabase::removeDatabase(connectionName);
|
||
|
emit errorOcurred(errorMessage);
|
||
|
}
|
||
|
});
|
||
|
}
|