| 448 | } |
| 449 | |
| 450 | bool SQLiteDB::deleteEntry(int ohfi) |
| 451 | { |
| 452 | QSqlQuery query(QString("DELETE FROM object_node WHERE object_id == %1").arg(ohfi)); |
| 453 | bool ret = query.exec(); |
| 454 | if(!ret) { |
| 455 | qDebug() << query.lastError(); |
| 456 | } |
| 457 | return ret; |
| 458 | } |
| 459 | |
| 460 | bool SQLiteDB::updateAdjacencyList(int ohfi, int id_parent) |
| 461 | { |
nothing calls this directly
no outgoing calls
no test coverage detected