| 442 | } |
| 443 | |
| 444 | bool SQLiteDB::updateSize(int ohfi, quint64 size) |
| 445 | { |
| 446 | QSqlQuery query(QString("UPDATE sources SET size = %1 WHERE object_id == %2").arg(size).arg(ohfi)); |
| 447 | return query.exec(); |
| 448 | } |
| 449 | |
| 450 | bool SQLiteDB::deleteEntry(int ohfi) |
| 451 | { |
nothing calls this directly
no outgoing calls
no test coverage detected