Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.