Android Question NoSQL database?

daemon

Active Member
Licensed User
Longtime User
Is there any library / database available for storing and querying data in key-value form?

I'm aware of KeyValueStore but I'm looking for database where I can query / filter / sort / delete based on given criteria.
 

keirS

Well-Known Member
Licensed User
Longtime User
Couchbase has a Lite version for Android, IOS etc. Never used it; but it does come with a REST API so is usable with B4A without wrapping any libraries.
 
Upvote 0

daemon

Active Member
Licensed User
Longtime User
My data is not very structured. It is more like a log of various events. Sorting, filtering, etc are to be done in a common property - event time.
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
That sounds like a good option. I'll give it a try. Thank you!
You can simpy use a SQLite-DB on Android. SQLite is available on all android devices
 
Upvote 0
Top