Quote:
Originally Posted by zoran
Or simply using regexp 'ReadStatus'='1' and set it to <insert-whatever>?
|
If you're talking about using regular expressions on the database file, this would be a challenge, as the file isn't entirely human-readable. You can, however, use an SQL query, which will be something like the following:
Code:
UPDATE content
SET ReadStatus = '0'
SET FirstTimeReading = 'true'
WHERE Title = 'Title of Book';
Or for all books by replacing the last line by:
Code:
WHERE ReadStatus = '1';