You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it more like a can't use where clause here is my example
@InexactContentUri(
name = "SEARCH_QUERY",
path = Path.TUNES + "/*",
type = "vnd.android.cursor.dir/tune",
where = TuneColumns.TITLE + " LIKE ? ",
whereColumn = {},
pathSegment = 1)
public static Uri withQuery(String query){
return buildPath(Path.TUNES, query );
}
this doesn't work
twalipo
changed the title
LIKE
using where to add LIKE statement
Dec 16, 2017
how can i write a query like SELECT * FROM table_one WHERE name LIKE '%jac%' using @InexactContentUri, and i just cant get the where clause to work
The text was updated successfully, but these errors were encountered: