Connect to a remote database…online database

后端 未结 4 995
南方客
南方客 2020-12-15 13:03

I\'ve been looking for a week now... I need some help connecting to a remote database... I want my app to get data out of the database and update the database... I\'ve tried

4条回答
  •  Happy的楠姐
    2020-12-15 13:32

    I think rather than connect to a database remotely, you want to use REST services to get and post data to your remote database.  

    You can create a REST service to wrap your remote database query and return via http, JSON (which I prefer) or XML.

    In your android app you can do an http get or post to consume the aforementioned service

提交回复
热议问题