Access Oracle from iOS

I am developing an iPad application that requires read-only access to the Oracle database.

Is there any way to do this? As far as I can see, the only parameters are OCI, which requires a pre-built binary file in the form of instant clicks (and not built for ARM) or OJDBC drivers. Both of these seem to be out of the question.

In my research, I found that libmysqlclient compiles for manipulation with minimal configuration. This is a stretch, but is there any possible way to use this to my advantage?

I saw this product providing odbc communication using a Windows gateway machine using ODBC client libraries, but this solution really isn’t an option for me at present.

Any ideas?

+3
source share
3 answers

At the very bottom, there are only two libraries for accessing Oracle:

  • OCI binary library.
  • Java OJDBC Jar File.

All other libraries (such as ODBC, ADO.NET) are based on one of these libraries (usually the OCI).

There is no OCI library for the iPhone (or any ARM architecture as far as I know), and no Java VM for using OJDBC. Thus, you cannot directly connect from iPhone to the Oracle database.

, , ( ).

+2

... , . OJDBC iOS gcj ARM. Objective-C C, JNI . , , :)

+1

Oracle iOS . Oracle - . APEX , .

0

Source: https://habr.com/ru/post/1783412/


All Articles