Reputation: 6386
I am going to have database into my application. and i would like to know is it possible to share the same Db for Other apps we build.
Please let me know
Upvotes: 0
Views: 124
Reputation: 4254
There is a way to share your Databases with multiple application, You have a centralize dataBase and then you create webServices to access them. Webservices will be linked with that dataBase and different Application can use the same webService to access the dataBase.
but if your App itself have a db then Shiny is correct. You cannot share that DB with other Apps.
Upvotes: 2
Reputation: 593
NO WAY because every App running in its own sandbox.
Please check the documentation here: http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/TheiOSEnvironment/TheiOSEnvironment.html#//apple_ref/doc/uid/TP40007072-CH9-SW1
Upvotes: 3