sqlight generic fld change api

Change-Id: I1ff21da94bd61a3aecf2a54f0212cd3b88b5776e
Esse commit está contido em:
Evgeny
2020-06-02 07:45:53 -05:00
commit de Rachida Kebichi
commit 6f0e4dbc61
2 arquivos alterados com 4 adições e 2 exclusões
+2
Ver Arquivo
@@ -74,6 +74,8 @@ class SQLiteDB:
self.connection.execute('UPDATE ' + table_name + ' SET Name = ? WHERE "Index" = ?', (rec_name, rec_id))
def change_rec_tid(self, table_name, rec_id, tid):
self.connection.execute('UPDATE ' + table_name + ' SET tid = ? WHERE "Index" = ?', (tid, rec_id))
def change_rec_fld(self, table_name, fld_expr, rec_pat):
self.connection.execute('UPDATE ' + table_name + ' SET ' + fld_expr + ' WHERE ' + rec_pat)
# populate DB table entry
def insert_entry(self, table, val_list):