Access sqlite from a remote server

前端 未结 8 1183
悲哀的现实
悲哀的现实 2020-11-28 15:05

I am wondering how i can access an sqlite database that is sitting a remote server.I have read threads discouraging it but i need to do it if its possible.

          


        
8条回答
  •  离开以前
    2020-11-28 16:00

    You cannot directly access an sqlite database remotely like that. If you need to share it, you will have to develop a web service and talk to the web service rather than the database from your Qt Application.

    There are some tools which act as a web service for stuff like that, e.g. this site has some links.

提交回复
热议问题