Android Question SQLite: Fetch all rows in a result set in an array/map

texwillerx

Member
Licensed User
Longtime User
Is there a way to fetch all rows in a result set in an array/map such as

sqlite_fetch_all in php​

fetchall in Python
 

DonManfred

Expert
Licensed User
Longtime User
You have to do it by yourself.
Query the data from the database and build the array you want based on the results.
 
Upvote 0
Top