문제

I have a sqlite database, which uses custom tokenizers:

Do all clients, which want to read from this database, require the same tokenizer in their sqlite-driver? Or are the internal tokenizer data structures ready to use without implementation of custom tokenizers?

도움이 되었습니까?

해결책

The tokenizer is applied to both the inserted data and the search string, so every application that accesses a database must have installed any custom tokenizers used in that database.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top