In SQLite FTS tables there is a hidden languageid
column that I want to make use of: I need to populate my FTS4 table with rows in two different languages, which I will then distinguish by languageid
column.
I create my table with a command like this:
CREATE VIRTUAL TABLE `texts` USING FTS4(`text`, tokenize=unicode61, languageid=`lid`)
Now how can I INSERT
a row with a specified languageid
if it is a hidden column? Or is there some other way to specify the language used in a row?