Reputation: 21
Hi im building a project for college at the moment which is a Betting history app basically. It takes user input of different bet made and displays a summary of how much money the user has won/lost . What I am wondering is what would be the best way to store this information ?? Would I use a data base and SQLite or just use a simple text file to store the data?? I would want the total win/loss to be displayed at all times on the home screen of the app.
Upvotes: 0
Views: 51
Reputation: 20150
You should use an SQLite
database. It is easy to use, persistent, fast and does not need any additional permissions for your App.
Upvotes: 3