Reputation: 3722
I'm building an iPhone app which uses the sqlite3 library - are there any special requirements for hosting the database itself since its using sqlite3? Can I host it on one of my GoDaddy accounts for example? I get like 25 free databases with my current account with them but I'm just wondering if the SQL databases they can host will work or if they need to be sqlite3 format specifically...
any ideas?
Upvotes: 0
Views: 3171
Reputation: 113747
You should save the database file to the Library/Caches
folder instead of hosting it online, unless you have a specific reason to keep it online.
Upvotes: 1