SQLite 数据库中的 HashMap
我想在 SQLite 数据库中存储 HashMap。我尝试过使用对象数据库,但它比我想要的 Android 开发要庞大。我是否可以将其序列化,然后存储序列化的结果?或者我必须做点别的事情?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
既然 HashMap 是一个键/值对,为什么不将所有键/值添加到 JSON 对象并将该对象存储在 SQLite 中呢?
Seeing HashMap is a key/value pair, why not add all keys/values to a JSON Object and store the object in SQLite?
Map 是键/值对。如果您有一个表,其主键列与您的映射键匹配,您可以将每个映射条目添加一行到数据库中。
A Map is key/value pairs. If you have a table with a primary key column that matches your Map key you can add one row per Map entry into the database.