mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-24 00:33:02 +03:00
Connection will be restored if server is gone away or drop limereport connection
This commit is contained in:
parent
f7a3ff622b
commit
8659818a30
@ -735,6 +735,11 @@ void DataSourceManager::setReportSettings(ReportSettings *reportSettings)
|
||||
m_reportSettings = reportSettings;
|
||||
}
|
||||
|
||||
bool DataSourceManager::checkConnection(QSqlDatabase db){
|
||||
QSqlQuery query("Select 1",db);
|
||||
return query.first();
|
||||
}
|
||||
|
||||
bool DataSourceManager::connectConnection(ConnectionDesc *connectionDesc)
|
||||
{
|
||||
|
||||
@ -759,7 +764,10 @@ bool DataSourceManager::connectConnection(ConnectionDesc *connectionDesc)
|
||||
db.close();
|
||||
connected = initAndOpenDB(db, *connectionDesc);
|
||||
} else {
|
||||
connected = db.isOpen();
|
||||
//connected = db.isOpen();
|
||||
connected = checkConnection(db);
|
||||
if (!connected)
|
||||
connected = initAndOpenDB(db, *connectionDesc);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -221,7 +221,7 @@ protected:
|
||||
void setSystemVariable(const QString& name, const QVariant& value, RenderPass pass);
|
||||
void setLastError(const QString& value);
|
||||
void invalidateLinkedDatasources(QString datasourceName);
|
||||
|
||||
bool checkConnection(QSqlDatabase db);
|
||||
private slots:
|
||||
void slotConnectionRenamed(const QString& oldName,const QString& newName);
|
||||
void slotQueryTextChanged(const QString& queryName, const QString& queryText);
|
||||
|
Loading…
Reference in New Issue
Block a user