To continue
Recursive delete of SQLite items
The question is about update all descendants with some flag.
I modified script:
CREATE TABLE files (id PRIMARY KEY AUTOINCREMENT, title TEXT, isactive INT, folder INTEGER CHECK(FOLDER EQUALS 0 OR FOLDER = 1), parent REFERENCES id);
If I set isactive flag for parent node then need to set the same flag for all descendants on all levels. How to do it?