Make changes in APP TABLES

I want to change some data in table (table name - tasks)

  1. Load in variables (TaskList) all records
  2. In loops read one by one records
  3. Set property in colums (taskStatus) - Close

BUT this doesn’t work :frowning_face:

1

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

1 Like

Thanks a lot, Denys