You are not logged in.
Does mORMot have any features to make use of fts4aux: https://www.sqlite.org/fts3.html#fts4aux ?
I've noticed it metioned in the update below but can't see how to use it with mORMot.
http://synopse.info/forum/viewtopic.php?id=299
Thanks
Offline
Quoting from the sqlite.org website: "The fts4aux module is automatically included in all builds that include FTS." I'm not sure if it's the same case with mORMot.
Delphi XE4 Pro on Windows 7 64bit.
Lazarus trunk built with fpcupdelux on Windows with cross-compile for Linux 64bit.
Offline
Thanks, yes it does work. Doing wildcard style searches isn't easy but I've found this works -
SELECT term FROM ft_terms WHERE term BETWEEN 'appl' AND 'appl' ||
CAST(x'FF' AS CHAR)
Offline