i built an iphone app which access sqlite database, i wanna upload the database on server.
Does the code of connecting and access the database will change ?
And what the best server to upload Sqlite database for iphone apps ?
Thanks in advance!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Read the SQLite homepage: http://www.sqlite.org/
SQLite is a software library that implements a self-contained, serverless, …
SQLite databases are designed to be only used locally, usually inside a single application. They are not meant to be uploaded in any way. (Obviously, you can however export the data, and upload the data dump.)