Reputation: 21
I am doing sqlite with iphone development, right now the db files are on my macbook. My question is when I submit it to the app store, where the db resides? Is it on apple's server or on each user's device?
Upvotes: 0
Views: 81
Reputation:
Just tink a very-very lille bit! if it would be at apple server, and if a novice programmer would write an infinite loop while generating his test data what would happen? :)
It is in your phone / device.
Upvotes: 0
Reputation: 8151
No data resides on Apples Server. Databases will either reside in the document directory or inside your application bundle (you could also use a web service to access data from a database). Perhaps you should have a look at SQLite 101 for iPhone Developers: Creating and Scripting and SQLite 101 for iPhone Developers: Making Our App
Upvotes: 1