I am working on a database with sqllite in an android app I want to retrieve sm data using a like clause ex:
Cursor c = myDB.query(MY_DATABASE_TABLE, null,
No need for the equal sign and you should be able to include the ? right in the string without the need for the + operator. The where clause should just be:
"SongName LIKE '%?%'"
and if mu is too short is correct and you only want starting with...
"SongName LIKE '?%'"