How I can make SQLite Database Central on App Store?
HI, I am new to Iphone app d开发者_运维知识库evelopment. I am suppose to develop an app which will have central database like we have in any .Net web Application. Do SQLite provide such feature and if yes, where i have to put my database so that different users can access same database from their Apps. Thanks in advance
No SQLite is only to store things on each individual phone. I would use a central server with a web-service interface (and your favorite SQL or noSQL server as its backing store) that is accessed by the iPhone application.
Also SQLite does not scale well when many users are performing concurrent inserts - it is not that kind of a database. Use something like MySQL, SQL Server, Oracle or whatever that is designed for that purpose.
精彩评论