Should Android use csv? or better sqlite?
I have a table in excel. I think whether to use csv or better to convert it into sqlite?
Should Android use csv? or better sqlite?
I have a table in excel. I think whether to use csv or better to convert it into sqlite?
The question gives rise to endless debates and discussions based not on knowledge, but on opinions. To get an answer, rephrase your question so that it can be given an unambiguously correct answer, or delete the question altogether. If the question can be reformulated according to the rules set out in the certificate , edit it .
It all depends on what you are going to do with the data, if you need the ability to query a sample from a table, often read data, or update individual rows / columns of a table, then it makes sense to use SQLite. If you just need to occasionally read the entire table to a list, it doesn’t filter it when you request it and you will only update the entire table, then there’s no point in bothering using the database.
Source: https://ru.stackoverflow.com/questions/545374/
All Articles