|
@@ -127,8 +127,8 @@ class LeDataSourceSQL(DummyDatasource):
|
127
|
127
|
prep_rel_filters = self._prepare_rel_filters(rel_filters)
|
128
|
128
|
query = update(table=query_table_name, where=where_filters, set=set_data)
|
129
|
129
|
with self.connection as cur:
|
130
|
|
- cur.execute(query)
|
131
|
|
- return True
|
|
130
|
+ result = cur.execute(query)
|
|
131
|
+ return result
|
132
|
132
|
|
133
|
133
|
## @brief inserts a new lodel editorial component
|
134
|
134
|
# @param target_cls LeCrud(class) : The component class concerned by the insert (a LeCrud child class (not instance !) )
|