elef has asked for the wisdom of the Perl Monks concerning the following question:
$dbh->do("CREATE VIRTUAL TABLE tmdata USING fts4 ($collist, tokenize=u +nicode61)") # works but has undesired side effect of treating all acc +ented letters the same as the 'base letter' # $dbh->do("CREATE VIRTUAL TABLE tmdata USING fts4 ($collist, tokenize +=unicode61, \"remove_diacritics=0\")") # fails with unrecognized para +meter error # $dbh->do("CREATE VIRTUAL TABLE tmdata USING fts4 ($collist, tokenize +=unicode61, remove_diacritics=0)") # fails the same way return;}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: DBD::SQLite: remove_diacritics throws error
by Anonymous Monk on Jan 14, 2015 at 21:03 UTC | |
by elef (Friar) on Jan 14, 2015 at 21:24 UTC |