Using Blackberry to Access Oracle Database?

I really hope I know how to do this because I'm new to Blackberry development.

Basically, I was asked to write a short report on how a blackberry will access a database server, such as Oracle, and I don’t know how a blackberry works well enough to understand this. I tried searching on BlackBerry DB on Google and I always get the Blackberry app and the app for $ 39.99. This is really annoying.

If someone did this or now, how to point me to any good articles or tutorials or some code that explains how this will work would be great!

+3
source share
2 answers

In case you need access to an application that runs on Oracle, the best thing you can do is access your database through the Application Server (Java, PHP, .NET).

This way, you communicate with your database using a common application-level protocol, such as HTTP, SOAP / HTTP, or what you can use natively on your Blackberry device. You do not need to provide your device with a direct connection to the Oracle database, which is not only simplified, but also more secure.

Since you are coding Blackberry applications in Java, you can be sure that you will have a lot of support for executing the HTTP request and processing its responses in your application.

Oracle , , (JDBC, ADO.NET, PHP oci wrapper) .

+6

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


All Articles