I am building an application where the user can save some information into an sqlite database. What I now want to do is be able to get the data from the sqlite database and store each row in its own string.
Note
There is only one column in the database.
So, algoritm is not difficult, just create
Cursorand in loop you will be retrieving data from it and then save them toListfor example.So try this snippet of code: