|
@@ -224,7 +224,26 @@ class LeDataSourceSQL(DummyDatasource):
|
224
|
224
|
cur.execute(sql)
|
225
|
225
|
self._set_relation_rank(id_relation, rank)
|
226
|
226
|
return relation_id
|
227
|
|
-
|
|
227
|
+
|
|
228
|
+ ## @brief Deletes the relation between 2 LeType
|
|
229
|
+ # @param lesup LeType
|
|
230
|
+ # @param lesub LeType
|
|
231
|
+ # @return True if success else False
|
|
232
|
+ def del_related(self, lesup, lesub):
|
|
233
|
+ with self.connection as cur:
|
|
234
|
+ sql = delete(
|
|
235
|
+ self.datasource_utils.relations_table_name,
|
|
236
|
+ {
|
|
237
|
+ 'id_sup': lesup.lodel_id,
|
|
238
|
+ 'id_sub': lesub.lodel_id
|
|
239
|
+ }
|
|
240
|
+ )
|
|
241
|
+
|
|
242
|
+ if cur.execute(sql) != 1:
|
|
243
|
+ return False
|
|
244
|
+
|
|
245
|
+ return True
|
|
246
|
+
|
228
|
247
|
## @brief Set the rank of a relation identified by its ID
|
229
|
248
|
# @param id_relation int : relation ID
|
230
|
249
|
# @param rank int|str : 'first', 'last', or an integer value
|