| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #include "DBOperation.h" 2 : #include "../db/DB.h" 3 : 4 20 : DBOperation::DBOperation(OperationManager *parent) : 5 20 : SyncOperation(parent) 6 : { 7 20 : } 8 : 9 106 : QSqlDatabase DBOperation::db() 10 : { 11 106 : return DB::instance()->db(); 12 : } 13 : 14 0 : void DBOperation::reportSQLError(const QSqlQuery &query, const QString &errorString) 15 : { 16 0 : reportError(errorString + " SQLite says: " + query.lastError().text()); 17 0 : } |
| Generated by: LCOV version 2.0-1 |