View Single Post
Old 08-22-2010, 12:59 AM   #5
farrioth
Enthusiast
farrioth began at the beginning.
 
Posts: 36
Karma: 12
Join Date: Aug 2010
Device: Kobo eReader
Quote:
Originally Posted by zoran View Post
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';
farrioth is offline   Reply With Quote