user2517419
user2517419

Reputation:

Which is faster: Writing SQLite database or In a Text File

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

Answers (1)

Venkata Krishna
Venkata Krishna

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

Related Questions