Connecting to oracle in android

前端 未结 5 1295
無奈伤痛
無奈伤痛 2020-12-16 08:20

So people are probably going to tell me this is a bad idea, but I\'d like to at least give it a go.

EDIT The intention of this app is that it can o

5条回答
  •  南方客
    南方客 (楼主)
    2020-12-16 09:11

    Another and much easier approach is to use a Virtual JDBC Driver that relies on a secure 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".

提交回复
热议问题