I would like for my iPhone application to interact with a sqlite3 database file that is hosted on my server. How can I achieve this with Objective-C?
Let me know if you need more details.
I would like for my iPhone application to interact with a sqlite3 database file that is hosted on my server. How can I achieve this with Objective-C?
Let me know if you need more details.
Use a HTTP front end for you SQLITE database. That way, you can write a server side application to access your SQLITE database in any language you want:
And you can access and/or modify your SQLITE database data within your iPhone (or Mac OS) application by issuing HTTP commands with NSString's stringWithContentsOfUrl
or any other suitable class for this purpose.
Hope it helps.