I have Android SQLite table in db it looks like this.
id | client | content
---|--------|--------
1 | 34 | cba
2 | 45 | abc
When i want to update one row, i really need that sqlite check if new values is exactly the same as in updated row and does not do anything or throw exception.
For example if i try to update row with id 1 (in my example table above) with values (34, cba) i want know that values is the same.
How to figure out sqlite database to perform this check?