Replies: 1 comment
-
Find a solution:
I am not sure if this is the best solution. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
From the document of SQLite: https://www.sqlite.org/fts3.html, the way to register a custom tokenizer is executing a sql:
SELECT fts3_tokenizer(<tokenizer-name>, <sqlite3_tokenizer_module ptr>)
I am stuck on how to provide the second parameter, which is a buffer storing the pointer to the tokenizer. How can this be done in Node.js?
Beta Was this translation helpful? Give feedback.
All reactions