-
-
Notifications
You must be signed in to change notification settings - Fork 39
Lexicon Database
Oliver Tseng edited this page Jan 1, 2021
·
2 revisions
All lexicon files are sqlite3 database files in the marvelData/lexicons directory. The filename is used as the lexicon abbreviation in all listings in Unique Bible App.
CREATE TABLE Lexicon (Topic NVARCHAR(100), Definition TEXT);
INSERT INTO Lexicon VALUES ('info', 'My Custom Lexicon')
INSERT INTO Lexicon VALUES ('G40', 'My lexicon entry for Strong's G40')"
The first letter in the Topic column defines the type of data.
"H": config.defaultLexiconStrongH,
"G": config.defaultLexiconStrongG,
"E": config.defaultLexiconETCBC,
"L": config.defaultLexiconLXX,
"g": config.defaultLexiconGK,
"l": config.defaultLexiconLN,