I would ask you on your opinion, what is the best way to import data into SQLite database.
- Create SQL dump and put it into assert folder and use rawQuery() method to execute.
- Each table create independent and data read from csv/xml documents
Copy complete database, using InputStream/OutputStream
- If size of data is approximately 1MB / 2000 recors, and less
- if size of data is >= 1MB
Thank you