Hope your doing well.
I'm developing and android app that should retreive data from the server side using JSON and store this data in SQL in android then display this data using Listview.
I will need to update the data located on the server side by adding or removing some rows.
The question is here, how can i insert ONLY the new row added on the server side into the SQL in android so it can be displayed in the Listview?
And how can i remove a row from SQL in android when removing it from database on the server so it can be not displayed in the Listview?
Thanks in Advance.