Is it possible to have a remote sqlite database

Is it possible to remotely store sqlite database on server? I am building an iphone application and all the tutorials seem to store the sqlite database on the iphone itself ...

+5
source share
2 answers

This is not recommended as you will quickly encounter concurrency issues. In that case, I would use traditional RDMS such as MySQL or PostegreSQL.

SQLite has a useful page explaining when to use it. It says:

If you have many client programs accessing a shared database over the network, you should consider using the SQLite client database server.

+4

, , sqlite db throuth ssh tunnel. mysql postgersql.

+2

All Articles