0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-23 16:22:58 +03:00

Debug output has been removed

This commit is contained in:
Arin Alex 2016-06-07 00:52:40 +03:00
parent 5455b53404
commit 6a507e5b61

View File

@ -308,7 +308,6 @@ QSharedPointer<QAbstractItemModel>DataSourceManager::previewSQL(const QString &c
QSqlQuery query(db);
query.prepare(queryText);
foreach(QString param,aliasesToParam.keys()){
QVariant value;
if (param.contains(".")){
@ -322,10 +321,6 @@ QSharedPointer<QAbstractItemModel>DataSourceManager::previewSQL(const QString &c
}
query.exec();
while (query.next()){
qDebug()<<query.value(0);
}
model->setQuery(query);
m_lastError = model->lastError().text();
if (model->query().isActive())