From what I understand, this is a limitation of FTS in general, on different platforms, that suffix / postfix searches are not possible.
The best workaround I've seen is to add a column to MyTable called ReverseBody and keep the back of the Body column and add it to the FT index. Then you write queries like
select * from MyTable where the opposite matches (REVERSE ('qlite') + '*')
I work on SQL Server, so we have REVERSE built in. I don't think SQLite does, but you can add custom functions to do it as descrbed here
source share