1

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?

CL.
  • 173,858
  • 17
  • 217
  • 259
Chris
  • 8,031
  • 10
  • 41
  • 67
  • What do you mean with "custom tokenizer"? Data is stored within tokens in database? Or do you mean custom collation? – LS_ᴅᴇᴠ Jan 07 '14 at 17:09

1 Answers1

2

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.

CL.
  • 173,858
  • 17
  • 217
  • 259
  • What is your advice, if an iphone app needs to use german locale in order to do full text search including stemming? – Chris Jan 08 '14 at 00:22
  • If you are using a custom German tokenizer, you have to install it if you want to use it. – CL. Jan 08 '14 at 07:29