Searching for data by MySQL in PostgreSQL

2

Is there any way to connect MySQL with PostgreSQL, so that MySQL DBMS is used but selecting data that is in PostgreSQL?

    
asked by anonymous 02.04.2015 / 17:08

1 answer

2

No. A DBMS, by definition, is where the data is saved in a specific format, and a method of interacting with the data.

You can:

  • Convert PostgreSQL data to MySQL permanently
  • Use a Middleware
  • Create an API system to extract PostgreSQL data without having to use its interface for all access.
02.04.2015 / 17:20