WHERE g.value like '" + lookingFor + "%'
I have an EditText which filters cursor from SQLite database. I want to take 'value' from 'g' table. For example one of 'value' is 'full stop'. When I input 'stop', query should find full stop.
If lookingFor is "efg", nothing is found. How to find "abcd efgh" when "efg" is typed?
PS. I do not want to get "abcd edfh" when I type "cd"