What is the best way to connect between android and oracle database?

前端 未结 7 528
后悔当初
后悔当初 2020-12-09 19:48

I need to access data from an external oracle database from my application android to update the local database application, but I don\'t know what would be the best way to

7条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-09 20:03

    There is a simpler way than writing a WebService and still keeping the same level of security: use a Virtual JDBC Driver that uses a 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 Oracle 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".

提交回复
热议问题