How to escape special characters like ' in sqlite in android
Solution 1:
The SQL standard specifies that single-quotes in strings are escaped by putting two single quotes in a row. SQL works like the Pascal programming language in the regard. SQLite follows this standard. Example:
INSERT INTO xyz VALUES('5 O''clock');
Ref : SQLite FAQ
Solution 2:
The best way is to use a native Android method designed for exactly this purpose:
DatabaseUtils.sqlEscapeString(String)
Here is the documentation for it online:
- sqlEscapeString() on Android Developers
The main advantage of using this method, in my opinion, is the self-documentation because of the clear method name.