| 1153 | } |
| 1154 | |
| 1155 | int SQLiteDB::getObjectType(int ohfi) |
| 1156 | { |
| 1157 | QSqlQuery query; |
| 1158 | query.prepare("SELECT type FROM object_node WHERE object_id = :object_id"); |
| 1159 | query.bindValue(0, ohfi); |
| 1160 | if(!query.exec() || !query.next()) { |
| 1161 | qDebug() << query.lastError(); |
| 1162 | return 0; |
| 1163 | } else { |
| 1164 | return query.value(0).toInt(); |
| 1165 | } |
| 1166 | } |
| 1167 | |
| 1168 | int SQLiteDB::getParentId(int ohfi) |
| 1169 | { |