Is there a way to connect to an Oracle View from MySQL?
My scenario is the following: In the company we have built a system entirely on MySQL and we have some views to display consolidated data. Due to a recent initiative to connect to the company's central database we have to connect to some of the tables in an Oracle DB instead of the ones in MySQL.
The idea is to transparently connect to Oracle, with the minimum possible impact, ideally, just changing the references from MySQL tables to the Oracle views.
Is it possible to achieve this in an optimal way? What could be the best option?
Previous research: Looking into similar questions here in SO, I wasn't able to find accepted or proved answers. I'm newbie in such kind of integration.