P L
P L

Reputation: 21

sqlite server on apple server?

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

Answers (2)

user529543
user529543

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

atrljoe
atrljoe

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

Related Questions