S M
S M

Reputation: 29

Is that possible to create APEX application which access two databases simultaneously?

I'm trying to extend an existing Apex app: connection to another database is required. Would it be possible? Or at least start Apex on one database and connect to another.

This is for Oracle 12c and Apex 5.2

Upvotes: 0

Views: 295

Answers (1)

Enrique Flores
Enrique Flores

Reputation: 755

Database link is the best option if you want to access directly to the other database using queries, but if you want to get the information in JSON from one or two tables you can use ORDS to public a web service.

Upvotes: 3

Related Questions