I am creating my first Android application that will use SQlite. I have zero experience working with databases, except creating a mysql database for use with wordpress ...
Editing: after some research on rest, I'm still confused about how each other is suitable for rest, sqlite and android dev. My goal is to access the leisure-based web service through a URL and access some datasets and then store them in my SQlite database. Then I want to access the contents of the database through my java program and use them accordingly.
Datasets can be downloaded individually in CSV format , but since I will use so many of them, I donβt want to go through each line individually and store them in a database. I hope that there will be a more efficient way to store these datasets in a database.
My main questions are:
- How to copy XML content of webpage from url to sqlite database? Can I do this using my java program via sqlite database or java library?
- Do I only need to copy the contents of the web pages from the url to the sqlite database once? If so, what can I do if any information is changed in the data sets?
mdegges
source share