如何使用数据库开发iPhone应用程序?
我想开发一个 CRM iPhone 应用程序。我认为有两种方法来处理数据存储,一种是使用Sqlite(但它不能与其他人共享数据?),另一种方法是使用Web服务(让应用程序通过一个Web应用程序CURD数据),我想知道哪个更好?
I want to develop a CRM iphone app. I think there are 2 methods to deal with the data store, one is using the Sqlite(but it can not share datas with others ?), the other method is using the webservice(let the app CURD data by one web application), I want to know which is better?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为问题不在于拥有其中之一,您可以同时拥有两者:Web 服务,用于在存储公共数据的地方公开中央服务器,以及存储该数据副本的本地 SQLite 数据库。这允许您进行快速搜索等,而不是联系某些可能在线或不在线的远程服务器。
I think the question is not about having one or the other, you could have both: Webservices to expose a central server somewhere where common data is stored and your local SQLite database where a copy of this data is stored. This allows you for fast search etc. instead of contacting some remote server that may or may not be on-line.
如果你想共享你的数据,那么你必须将你的数据存储在 webdatabase 中,否则存储在 sqlite 中,
你可以将你的数据存储在 sqlite 中以便快速访问,当你想共享该时间时,你可以将其发送到 webservice 并在需要时检索查看更多数据
If you want to share your data then you have to store your data in webdatabase otherwise store in sqlite
you can store your data in sqlite for fast access and when you want to share that time you can send it to webservice and retrive when you need to see more data