|
|
#31 | |
|
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 14,140
Karma: 83479096
Join Date: Nov 2007
Location: Toronto
Device: Libra H2O, Libra Colour
|
Quote:
|
|
|
|
|
|
|
#32 |
|
Addict
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 257
Karma: 356710
Join Date: Jan 2016
Location: France
Device: none
|
Does it work well on the Kobo Clara?
Because I have a couple of questions about assigning books to Collections on it: 1. In "My Books", is it possible to select multiple books and assign them all to the same Collection in one go? 2. In "My Books", hide books that were assigned to a Collection? And ideally, is there a way to assign a book to a collection when copying it from the computer (ie. side-loaded), so I don't have to do that manually for each book? --- "Download Kobo Collection Manager" → "Access to jcremers.com was denied. You don't have authorization to view this page. HTTP ERROR 403" https://forum.jcremers.com/index.php/topic,677.new.html → Gateway time-out Error code 504 -- To add an item to a Collection… 1. Copy KoboReader.sqlite, right after a reboot, to avoid the "database disk image is malformed" and "Runtime error : UNIQUE constraint failed" errors 2. Open, and do an INSERT into the ShelfContent table 3. Copy the file back into the Kobo I don't know how safe it is. Code:
CREATE TABLE ShelfContent (
ShelfName TEXT,
ContentId TEXT,
DateModified TEXT,
_IsDeleted BOOL,
_IsSynced BOOL,
PRIMARY KEY(ShelfName, ContentId)
);
CREATE TABLE Event (
EventType INTEGER NOT NULL,
FirstOccurrence TEXT,
LastOccurrence TEXT,
EventCount INTEGER DEFAULT 0,
ContentID TEXT,
ExtraData BLOB, Checksum TEXT,
PRIMARY KEY (EventType, ContentID) );
);
SELECT date("LastOccurrence") as Date, ContentID as Title FROM Event WHERE ContentID IS NOT NULL AND ContentID IS NOT '' AND ContentID NOT LIKE '%.png' AND ContentID NOT LIKE '%.txt' GROUP BY ContentID HAVING LastOccurrence = MAX(LastOccurrence) ORDER BY Date DESC limit 5;
Last edited by Shohreh; 09-23-2026 at 05:42 AM. |
|
|
|
| Advert | |
|
|
![]() |
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Kobo Collection Manager | JeanC | Kobo Reader | 17 | 04-02-2025 04:32 AM |
| Kobo Collection Manager | JeanC | Kobo Developer's Corner | 0 | 02-17-2025 04:31 AM |
| collection manager | Lordblacknail | Amazon Kindle | 10 | 06-04-2011 05:59 PM |
| collection manager | Lordblacknail | Sony Reader | 2 | 05-04-2011 01:01 AM |
| collection manager | Lordblacknail | Barnes & Noble NOOK | 1 | 05-04-2011 12:54 AM |