View Single Post
Old 08-22-2010, 09:53 AM   #10
zoran
himself
zoran can tame squirrels without the assistance of a chair or a whip.zoran can tame squirrels without the assistance of a chair or a whip.zoran can tame squirrels without the assistance of a chair or a whip.zoran can tame squirrels without the assistance of a chair or a whip.zoran can tame squirrels without the assistance of a chair or a whip.zoran can tame squirrels without the assistance of a chair or a whip.zoran can tame squirrels without the assistance of a chair or a whip.zoran can tame squirrels without the assistance of a chair or a whip.zoran can tame squirrels without the assistance of a chair or a whip.zoran can tame squirrels without the assistance of a chair or a whip.zoran can tame squirrels without the assistance of a chair or a whip.
 
Posts: 576
Karma: 11226
Join Date: May 2010
Device: Kobo
Quote:
Originally Posted by farrioth View Post
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';
Used sqlite eons ago. My idea would be to either handle it with
sqlite directly:

http://linux.die.net/man/1/sqlite3

or something in between:

http://www.sqlitemanager.org/

Sounds better to mount the reader and approach the file from
the home box. Frankly, have to read manual for it to speak any
further.
Another topic might be "jump to page XX".
zoran is offline   Reply With Quote