connect to sql server from android

后端 未结 3 1851
你的背包
你的背包 2020-11-28 13:32

I\'m currently developing a Field-Service application that stores data in the local sqlite database on an android device. At some point, usually after completing the data co

3条回答
  •  离开以前
    2020-11-28 14:18

    Another and much easier approach is to use a Virtual JDBC Driver that relys on a secured three-tier architecture: your JDBC code is sent through HTTP to a remote Servlet that filters the JDBC code (configuration & security) before passing it to the MySql JDBC Driver. The result is sent you back through HTTP.

    There are some free software that use this technique. Just Google "Android JDBC Driver over HTTP".

提交回复
热议问题