I'm trying to create the following table with sqlite 3.8.2
CREATE VIRTUAL TABLE IF NOT EXISTS media_fts
USING fts4 (
notindexed=media_id,
notindexed=album_id,
title,
artist,
album_artist,
album,
comment,
lyrics
) ;
But some reason, the command fails with the following error:
no such column: media_id
Do you know what is going wrong?
Note : According to this answer,
notindexedis supported for 3.8 and above.
The notindexed= option is not a column but just an option.
So when you want an unindexed column, you still have to list the column itself:
CREATE VIRTUAL TABLE IF NOT EXISTS media_fts
USING fts4 (
title,
artist,
album_artist,
album,
comment,
lyrics,
media_id,
album_id,
notindexed=media_id,
notindexed=album_id
) ;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With