I would like to store a HashMap in an SQLite Database. I have tried using an object database, but it’s more bulky than I would like for android development. Would I just serialize it and then store the result of serialization? Or must I do something else?
Share
Seeing HashMap is a key/value pair, why not add all keys/values to a JSON Object and store the object in SQLite?