View Single Post
Old 07-15-2020, 10:52 AM   #6
davidfor
Grand Sorcerer
davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.davidfor ought to be getting tired of karma fortunes by now.
 
Posts: 24,905
Karma: 47303824
Join Date: Jul 2011
Location: Sydney, Australia
Device: Kobo:Touch,Glo, AuraH2O, GloHD,AuraONE, ClaraHD, Libra H2O; tolinoepos
Did you download without a factory reset or signing out of the Kobo account? If so, you have probably lost the Dictionary table from the database. This is no longer needed and isn't created in the recent firmware versions.

The following is the definition. Running this with your favourite SQLite tools should fix it.

Code:
CREATE TABLE Dictionary (
	Suffix		TEXT,
	Name		TEXT,
	Installed	BOOL,
	Size		TEXT,
	LastModified	TEXT,
	IsSynced	BOOL,
	PRIMARY KEY(Suffix)
)
I don't think you need to insert anything. That should be done during a sync.
davidfor is offline   Reply With Quote