Reputation: 1099
i need to update my sqlite database which is on the external source(URL).
Upvotes: 1
Views: 365
Reputation: 14415
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?
Upvotes: 1