I'm trying to query with a wildcard element to search my SQLite table for entries with an element at any position in a specific variable. public String[] getCheckoutEntry(String ti
Solution 1:
Replace = operator with LIKE to make % behave like wildcard:
Post a Comment for "Android Sqlite Wildcards"