ios中Json对象到Sqlite数据库

发布于 2024-12-09 06:15:07 字数 44 浏览 2 评论 0原文

我想将获取的json文件数据推送到数据库。任何人都可以建议一些解决方案吗?

I want to push the fetched data of json file to database. Can anyone suggests some solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

高跟鞋的旋律 2024-12-16 06:15:07

1)首先,您可能会猜测您真正想对这些数据做什么,因为:

  • 您可以使用 FMDB 之类的东西 https://github.com/ccgus/fmdb.git 并将该 JSON 存储为字符串,并在每次需要时重新解析;
  • 您也可以使用 Mogenerator 工具 https://github.com/rentzsch/mogenerator.git 和 smth像 MagicalRecord 库 [https://github.com/magicalpanda/MagicalRecord.git] 一样轻松地从 n 中获取数据;
  • 最后,如果您喜欢 Apple 的选择,还有 CoreData。

1) First of all you might guess what really you do want to do with that data, because:

  • you could use things like FMDB https://github.com/ccgus/fmdb.git and store that JSON as string and get it reparsed every time you need it;
  • also you can use Mogenerator tool https://github.com/rentzsch/mogenerator.git and smth like MagicalRecord library [https://github.com/magicalpanda/MagicalRecord.git] to easily fetch data in n out;
  • and finally, there's CoreData if you like Apple's choise.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文