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
While using where clause you should escape your query with
DatabaseUtils.sqlEscapeString(query)
or
query.replaceAll("'", "\'\'")
otherwise if LIKE operator of this query 'lior will raise
Caused by: java.lang.IllegalArgumentException: Unterminated quote in '( display_name LIKE '%'lior%' AND mimetype IN ('vnd.android.cursor.item/phone_v2', 'vnd.android.cursor.item/email_v2') )'
The text was updated successfully, but these errors were encountered:
Issue kind: BUG
Version: 1.1.3
While using where clause you should escape your query with
or
otherwise if LIKE operator of this query
'lior
will raiseCaused by: java.lang.IllegalArgumentException: Unterminated quote in '( display_name LIKE '%'lior%' AND mimetype IN ('vnd.android.cursor.item/phone_v2', 'vnd.android.cursor.item/email_v2') )'
The text was updated successfully, but these errors were encountered: