Git pull made

This commit is contained in:
Eudes Inácio
2021-11-22 09:13:42 +01:00
3038 changed files with 1540859 additions and 912 deletions
+11 -8
View File
@@ -207,15 +207,18 @@ export class SqliteService {
//updateActions
public updateactions(id, data) {
console.log("update action data", data)
this.dbInstance.executeSql(`
UPDATE ${this.actions} SET publications = ? WHERE ProcessId = ${id}`, [data])
.then(() => {
console.log("action update with Success");
try {
console.log("update action data", data)
this.dbInstance.executeSql(`
UPDATE ${this.actions} SET publications = ? WHERE ProcessId = ${id}`, [data])
.then(() => {
console.log("action update with Success");
}, (e) => {
console.log(JSON.stringify(e.err));
});
} catch(error) {}
}, (e) => {
console.log(JSON.stringify(e.err));
});
}