Remote Database access

后端 未结 1 1492
抹茶落季
抹茶落季 2021-01-17 01:52

I\'m really a beginner, I\'m reading many different Android books as I would like to learn how to develop my own app.

The app I\'ve in mind is going to access to a r

相关标签:
1条回答
  • 2021-01-17 02:32

    You need to write a server-side-service that will allow you to manipulate your data from your Android device.

    There is no easy way of connecting Android DIRECTLY to a remote database.

    You solution should be something like this:

    ANDROID -> SERVER-SIDE-SERVICE -> DATABASE
    DATABASE -> SERVER-SIDE-SERVICE -> ANDROID
    

    For your SERVER-SIDE-SERVICE I would recommend you use any WEB/HTTP server side service written in your favorite language: Java, Python, ASP.NET (C#/VB.NET), PHP, you name it.

    0 讨论(0)
提交回复
热议问题