Expose Oracle Tables and Views in DataHub

0
Is it possible to Expose Oracle Tables and Views in DataHub so that I can refer to them as External Entities through my Mendix application Domain Model?
asked
2 answers
0

Strictly speaking: no.

A database can generally only be reached using database protocols using SQL and the datahub is based on OData over HTTPS.

If you want to access tables in Oracle databases in Mendix, you need either some app in between to convert it, or use the Database Connector

answered
0

You could probably use the Database Connector to import data from Oracle to a specific entity. If you want to access the data in real time you should have an API available to your Oracle data that you can use.

answered