MCPcopy Create free account
hub / github.com/codestation/qcma / deleteEntry

Method deleteEntry

common/sqlitedb.cpp:450–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

448}
449
450bool 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
460bool SQLiteDB::updateAdjacencyList(int ohfi, int id_parent)
461{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected