I want to create search for one of my sqlite3 tables. With a combination of a text-field or pull-down, the search should start after 3 letters have been entered and should return some recommendations which it found in the table. That's the idea at least.
For now I'm stuck at searching for a part of a string in the database.
"SELECT * FROM album WHERE artist='Audiosl'"
That does return a empty search as well as
"SELECT * FROM album WHERE artist LIKE 'Audiosl'"
Is there a way to do that?