database - Storage of Static data within android app -


I am currently developing a simple information application on various university campuses. I want the app to operate primarily in an offline state, so I want to store all my information locally. The data within the app will not be subject to any type of change, so I was wondering how to make such data the best (practice)? Basically what should I store information in SQLite DB, Java file or XML?

The answer depends on your needs, but due to the underlying integration with SQLite, the easiest is probably just You will have to use SQLite, plus you get the benefit of a relational database. You can reference for a start.


Comments

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -