如何将数据从 NSDictionary 写入 SQLite 数据库?
我有一个包含解析的 JSON 数据的 NSDictionary。如何将这些数据推送到数据库,以便我可以从数据库中提取它们以供进一步使用?
我正在使用 SBJSON 进行解析。
Possible Duplicate:
separating keys and objects from NSMutable dictionary and use the values in insert command of sqlite
I have an NSDictionary containing parsed JSON data. How can I push these data to a database so that I can extract them from database for further use?
I am using SBJSON for parsing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您的设计要求指定了 sqlite,那么我建议使用 Gus Mueller 的 FMDB 这样您就不必工作直接使用原始sqlite。
也就是说,正如 Chris 上面所说,Core Data 通常是比 sqlite 更好的解决方案。 Brent Simmons(NetNewsWire 开发人员)发布了一系列有关此主题的帖子,例如此帖子。
对我来说,“Core Data 比 sqlite 更好”这一口号的例外是您想要提供初始数据但不想执行到 Core Data 的初始导入的情况。
If your design requirements specify sqlite, then I would recommend using Gus Mueller's FMDB so that you do not have to work directly with raw sqlite.
That said, as Chris said above, Core Data is often a better solution than sqlite. Brent Simmons (NetNewsWire developer) has a series of posts about this subject, like this one.
The exception to the "Core Data is better than sqlite" mantra for me is the situation where you want to provide initial data but do not want to perform an initial import into Core Data.
使用核心数据来解决这个问题。这是一个很好的入门教程:
http://mobile.tutsplus.com/tutorials/iphone/iphone-core-数据/
Use core data for this matter. Here is a good tutorial to start with:
http://mobile.tutsplus.com/tutorials/iphone/iphone-core-data/
以下代码用于创建动态 plist 文件,该文件存储到捆绑包中,并且可以访问该数据并将数据插入到 .plist 文件中。
Following code goes to create the dynamic plist file and that file stores into the bundle and that data can be access and the insert the data into the .plist file.