如何将对象插入数据库
你好 我是 android 新手。我知道将字符串插入 SQlite DB,但我想将对象插入 DataBase。请告诉我方法。
Hi
Iam new to android.i know insertion of strings into SQlite DB,But i want to insert an Object into DataBase.Please tell me the way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将对象映射到表和列中或将其序列化为 blob。
关系数据库对对象一无所知。这称为“对象关系阻抗不匹配”。
you have to map the object into tables and columns or serialize it into a blob.
relational databases don't know anything about objects. it's called 'object-relational impedence mismatch'.