sqlitedbservice: provide error message with more context

This commit is contained in:
Albert S. 2020-08-24 21:36:19 +02:00
rodzic c78062e234
commit 498985bf25
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -11,7 +11,7 @@ bool SqliteDbService::fileExistsInDatabase(QString path, qint64 mtime)
query.addBindValue(path);
query.addBindValue(mtime);
if(!query.exec())
{ throw QSSGeneralException("Error while trying to query for file existance");
{ throw QSSGeneralException("Error while trying to query for file existance: " + query.lastError().text());
}
if(!query.next())
{
@ -33,7 +33,7 @@ bool SqliteDbService::fileExistsInDatabase(QString path)
query.prepare("SELECT 1 FROM file WHERE path = ?");
query.addBindValue(path);
if(!query.exec())
{ throw QSSGeneralException("Error while trying to query for file existance");
{ throw QSSGeneralException("Error while trying to query for file existance: " + query.lastError().text());
}
if(!query.next())
{