I have a bunch of rows in a basic CRUD app that I want to let the user search for by title. SQLite3 has a full-text search solution, but is it recommended to also use that for not-full-text searches, or is there a simpler way? For example, PostgreSQL has trigrams, which function really well for this simple use-case, and perhaps SQLite3 has something similar.
I feel like this question must have been answered before, but I cannot find such an answer, so I'm sorry if this is a duplicate.