03-14-2012, 12:21 PM | #16 | |||||
Enthusiast
Posts: 27
Karma: 20152
Join Date: Mar 2012
Device: Kobo Touch
|
Quote:
Quote:
Quote:
Quote:
Quote:
Thanks for everyone's help and comments, once again, Cheers, Matt |
|||||
05-02-2013, 01:39 PM | #17 | |
Addict
Posts: 201
Karma: 42238
Join Date: Oct 2012
Device: Kobo: Glo, Aura , Aura H2O, Aura ONE, Forma, Elipsa
|
The newer Firmwareversions have increased the user table, this one works.
Quote:
Last edited by ewphoenix123; 05-02-2013 at 03:26 PM. |
|
Advert | |
|
05-02-2013, 05:14 PM | #18 |
Zealot
Posts: 147
Karma: 1015220
Join Date: May 2011
Device: kindle
|
iriver Story HD is another choice. The resolution is on the higher side 1024 x 768 (like Kindle Paperwhite, Kobo Glo). You can use it without registration. Google Play Store is the default bookstore, but you don't have to use it.
iriver does not make new one any more, not official discontinue, either. The dictionary is a pain, otherwise a ok ereader. I don't usually suggest Story HD, it might fit your need. |
03-25-2014, 02:34 PM | #19 |
Enthusiast
Posts: 34
Karma: 12050
Join Date: Jul 2013
Location: France
Device: Kobo Mini 32GB
|
|
03-25-2014, 11:36 PM | #20 |
Grand Sorcerer
Posts: 24,905
Karma: 47303822
Join Date: Jul 2011
Location: Sydney, Australia
Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos
|
There are two extra columns in the current user table. The following should work:
Code:
INSERT INTO "user" VALUES('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa','aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa','xxxx@xxxx.xx','xxxx@xxxx.xx','2aaaa aaaaaaaaaaaaa==','aaa','FALSE','FALSE','FALSE'); |
Advert | |
|
03-27-2014, 04:22 AM | #21 |
google this
Posts: 63
Karma: 12646
Join Date: Jan 2011
Location: S.E. Asia
Device: kobo h2o2, bookeen muse frontlight, resurrected. Fire HD8.
|
Good info: thanks a lot.
Helps me get ready for delivery of new Aura HD. |
12-23-2014, 01:46 PM | #22 | |
Member
Posts: 23
Karma: 4388
Join Date: Jan 2013
Device: Kobo glo
|
Quote:
I've tried to execute this command while using "Sqliteman" but it won't produce any row. Then using sqlite3 on a terminal I get: UNIQUE constraint failed: user.UserID Are there any workarounds for my situation? (I've installed version 3.12 of the firmware w/o any patches). Last edited by Future Science; 12-23-2014 at 02:00 PM. |
|
12-23-2014, 02:55 PM | #23 | |
Grand Sorcerer
Posts: 5,057
Karma: 18018738
Join Date: Nov 2009
Location: UK
Device: Kindle Scribe, PW SE & Kindle 2022, Kobo Libra 2
|
Quote:
If you plan to side load books on to the Glo for your parents so they don't need a Kobo account an easy way is to add a fake email address when you register it for them, then skip the payment set up screen. Kobo don't do any validation on the email address and this works perfectly. I always do this when I get a new device as it speeds up registration then when I know the device is okay and works perfectly I just sign out of the fake email address and in with my actual account. Last edited by Josieb1; 12-23-2014 at 02:59 PM. |
|
12-23-2014, 04:28 PM | #24 |
Linux User
Posts: 2,281
Karma: 6123806
Join Date: Sep 2010
Location: Heidelberg, Germany
Device: none
|
|
12-24-2014, 05:56 AM | #25 | |
Member
Posts: 23
Karma: 4388
Join Date: Jan 2013
Device: Kobo glo
|
Quote:
I was thinking about removing my email address and using an empty one, like with the sqlite procedure. |
|
12-26-2014, 09:33 AM | #26 |
Zealot
Posts: 141
Karma: 2784614
Join Date: Nov 2012
Device: none
|
|
12-26-2014, 06:23 PM | #27 | |
Junior Member
Posts: 2
Karma: 10
Join Date: Dec 2014
Device: kobo
|
Quote:
Maybe the device field have to match the device. |
|
12-26-2014, 08:35 PM | #28 | |
Wizard
Posts: 4,466
Karma: 6900052
Join Date: Dec 2009
Location: The Heart of Texas
Device: Boox Note2, AuraHD, PDA,
|
Quote:
This includes Tshering's old post: If you just want to read your ebooks and do not want to use any of the sync features then you can use your Kobo device without registering. [This is what I have done all along. My memory may not be the greatest anymore but even I can find my place in a book I am reading on multiple devices. Sync is not of much use if you read a book from a single device.] 1. The tool you need. 2. I agree with David that you should do a "factory reset" before this kind of change in firmware. 3. After the reset it will ask if you want to register using WiFi or your computer - connect your USB cable and select computer. This should let you use the sqlitebrowser File>Open database function to find the "KoboReader.sqlite" file in the .kobo folder of your device. 4. Tshering's original description of the procedure: "there are several explanations at this forum. I cannot find them myself right now. Anyway, in order to initialize the reader without registering you can add a new line to the "user" table of the database. Fill in any fitting values. Depending on your reset firmware version, the number of values varies. Example for FW 1.9.12: Code: INSERT INTO user VALUES ("0", "0", "0", "0", "0");Example for FW 2.5.0: Code: INSERT INTO user VALUES ("0", "0", "0", "0", "0", "0","false") I think you use the SQLite Database Browser. Right? Open the database file "KoboReader.sqlite". Select "Browse Data" and choose the table "user". Look at line 1 and try to establish whether the values of one of the two examples might fit or whether you have to make some modifications. I guess the second example might be correct for the Mini. Choose Execute SQL, enter the command "INSERT INTO user VALUES ..." and press "Execute query". -------------------------------------------------------------------------------- tshering" For my user for AuraHD 3.1.1: INSERT INTO user VALUES ("0", "0", "0", "0", "0", "0","false","false","false") 5. After you have a zeroed out user and have saved the file, just restart your device and you should be good to go. Luck; Ken Last edited by Ken Maltby; 12-26-2014 at 08:45 PM. |
|
12-27-2014, 08:42 PM | #29 |
Junior Member
Posts: 2
Karma: 10
Join Date: Dec 2014
Device: kobo
|
Thanks Ken
I found a solution by chance, by removing the sd card which was bugging me each time i plugged in the reader on windows. It seems that the presence of a SD card was kind of bugging the kobo. I removed the sd card, but i also installed the kobo desktop on a Win7 computer, showing me that the device has an account xxxx@xxxx.xx, so i unplugged the kobo and it was working. So i blame the sd card for all the problems and i won't look further. |
12-27-2014, 08:58 PM | #30 |
Grand Sorcerer
Posts: 12,934
Karma: 76440364
Join Date: Nov 2007
Location: Toronto
Device: Libra H2O, Libra Colour
|
Why not for the insert use the named column approach:
INSERT INTO user (UserID, UserKey, UserDisplayName, UserEmail, ___DeviceID) values(list of 5 values) This way the syntax need not change as tables change. |
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Can't detect or connect to Kobo reader | GFH | Devices | 4 | 02-28-2012 10:20 AM |
Kobo Touch will not connect to Calibre | robmfrenette | Kobo Reader | 7 | 01-01-2012 07:56 PM |
Touch Kobo Touch defective after 3 months and Kobo Customer Support useless | shaf | Kobo Reader | 5 | 12-04-2011 06:10 PM |
Kobo Touch not disconnecting properly from Calibre OR Kobo Desktop - Windows 7 | JBlyth | Devices | 1 | 08-03-2011 07:50 AM |
How to de-activate Sony Reader from Connect? | bluearchtop | Sony Reader | 5 | 01-31-2008 07:53 PM |