Tagged Questions
6
votes
2answers
4k views
Deploying sqlite DB on iPhone app upgrade
I'm using sqlite as a datasource in an iPhone app. I have two questions regarding application upgrades.
1.) The data is all config/nontransactional. Meaning, it is readonly. When I update/add ...
4
votes
1answer
2k views
Promo code for in app purchase items
Apple doesn't provide promo codes for in app purchase products. My content will be in an sqlite database in the app. I'll use a column flag to indicate purchase status. Once the user purchases, I ...
1
vote
1answer
55 views
How to make sure sqlite DB gets updated during app update?
I have an application on app-store which is DB driven, mean all the content is residing in the sqlite DB file. Now, I need to send another update of the app with some content update in the sqlite DB, ...
1
vote
1answer
347 views
NSUserDefaults Values and SQLite Database after update an app in the Appstore
What happens with the NSUserDefaults values and the SQLite database after updating the application in the appstore?
Are they deleted or reseted or happens nothing with them?
Alex
1
vote
1answer
473 views
iPhone App fails to properly ??copy? database file ONLY with ad-hoc or app-store distribution and NOT in development mode
I just submitted this to Apple Support, but I'm wondering if anyone here has encountered something similar.
SUMMARY: my iphone app crashes when downloaded from the iTunes app store or from an ad-hoc ...
0
votes
2answers
205 views
Updating live app in store to use Core Data that currently does not use Core Data
I currently have an app in the store which is SQLite-backed and does not use Core Data. In the past when I have wanted to release an update that had SQLite changes, the update would include some code ...
0
votes
1answer
306 views
Does a SQLITE database get reset on an app update?
I'm wondering whether to use CoreData or simple sqlite database for an iOS app. The app lets users add tons of data to the database and I want to make sure that if I use sqlite, the database won't get ...
-1
votes
1answer
115 views
Updating Sqlite DB on iPhone Applliction
i'm developing an iphone app that uses local Sqlite3 DB; i would like to add an "Update data" menu voice that checks whether a new sqlite db version is found on my site and, if true, downloads file to ...