I have successfully exported the csv file of my android application database. Now what i want to do is by browse option selecting i can import that csv file and replace it with existing database tables (like as restore). I have a table in sqlite database name members.
Id == Name == Phone number
1 == Abhi == 11111111
2 == Ram == 111111223
3 == Alex == 891273932
I want to restore the csv file in to my phone database in android application.
Thanks