0

How to parse value from .sqlite file, i n my sqlite file there are more than 1000 records now i need to retrieve all the values and need to show that in a listview, i have saved that file in to my asset folder, is there any way to do as like parsing csv file

All the suggestions are most welcome Thanks in advance

Madhu
  • 1,780
  • 23
  • 47

2 Answers2

1

I would recommend:

The whole process seems to be overwhelmed at first with a lot of things need to be created, but once done you will get the flow.

hidro
  • 12,333
  • 6
  • 53
  • 53
1

You had database which has more than 1000 of records and it's in assets folder of application...

For that you need to copy asset database to installed app folder and then use it using SQLiteOpenHelper..

For more details with example you can take reference from here..

Ship an application with a database

Community
  • 1
  • 1