I am working with QSQLITE database in qt and attempt to implement fuzzy search in our program our sql query is something like this:
select name from things where name like '%arg%'
it's not the same the query is longer has joins and etc. I tried using SOUND and SOUNDEX() but I think none of them is supported in QSQLITE is there any way I can implement fuzzy search here?