I know it sounds stupid. I'm stupid so ill keep it brief.
I'm developing an android app for a project. I need a backend database which contains 40 records of latitude and longitude map coordinates. I DONT need a data entry form in the app. All i want to do is have the data stored and then to access it when needed.
e.g. Im storing coordinates from google maps and I want to use the longitude and latitude coordinates in my database to put a marker on the map.
All tutorials I have looked at for SQLiteDatabases have data entry forms with CRUD. I don't need these features and it makes me think im starting in the wrong place. Is SQLite even what I should be looking into?
The data will be stored on my local machine and not a server.
I imagine this is a very basic thing to be cleared up.