N Fard
N Fard

Reputation: 1099

how to update sqlite3 database fields in external source

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

Upvotes: 1

Views: 365

Answers (1)

Ross
Ross

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

Related Questions