Reputation: 97
I need to create a database with 3 fields - a unique identifier, 2 integer fields. The integers need to be taken as input from the user. The content of the database needs to be displayed when content is added. Also, it should be possible to delete content from the database. Please help me with this code
Upvotes: 0
Views: 28
Reputation: 3771
Use SQLite database http://developer.android.com/guide/topics/data/data-storage.html#db There are thousands tutorials about it in the internet
Upvotes: 1