views:

28

answers:

1

i need to update my sqlite database which is on the external source(URL).

+1  A: 

You'll need to write an API or something to interact with the sqlite database. An SQLite database is by definition serverless – so you can't interact with it directly over a remote connection.

For example write some PHP script, to preform the actions you want, on the server that hosts the database?

Ross
you mean i can't use xcode to change a field of my database in external source?
Naeim
See @Dominic's comment. You will need to add more information to question to get a helpful answer. It's hard to understand your problem.If you're editing the sqlite db in your resource folder of xcode and want it on the internet, just copy and upload it to the internet. If you want to edit an sqlite db on the internet, download it (which copying it), put in your resources folder edit it, then reupload it... i'm just guessing now...
Ross