I need to write an application which gathers information from an Sqlite db which is located on a remote server, and not on the iphone physically.
Can you point me on some examples, documentations on how to figure out this problem.
Thanks!
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.
SQLite is inherently a local database system. It is not directly accessible through the network. As such, you’re going to have to implement a frontend to your remote sqlite database with – say – PHP to provide the data in a form (like XML or JSON) you can process on the phone.