Reputation:
In Android, for saving persistent data - Which is better for faster writing speed in memory. SQLite Database or in a Text File?
Upvotes: 2
Views: 894
Reputation: 15112
It depends.
If you're saving complex data, then SQLite Database is obviously better and scalable.
But if you're saving non complex data like an integer or something, by all means use a text file, afterall SQLite Database is a flat file
Upvotes: 2