I want to change some data in table (table name - tasks)
- Load in variables (TaskList) all records
- In loops read one by one records
- Set property in colums (taskStatus) - Close
BUT this doesn’t work
I want to change some data in table (table name - tasks)
BUT this doesn’t work
Hello @Vadim_Atamanenko
“Set property in” is not updating the database, it only changes the property of the “ind” object.
You should use “Save Object in Backendless” to update the data.
There is an example
Or you can directly update the data inside “tasks” table by condition using “Bulk Update”
Regards, Denys
Thanks a lot, Denys