What's the easiest way to populate a SQLLite table with data off a URL?
I'm writing a Delphi web app that will generate a file on a server for my Android app to download.
In Delphi, I'll probably save it as a .csv file and use bulk import to import into MS SQL Server.
What's the easiest / best practice way to do this in Android? How would I download the file from the URL and then load it into SQLLite?
Many thanks for any pointers.