Hi there,
I have two machines. One has MySQL database and the other has Informix database.
I am trying to write a java program to selected rows from Informix database tables and insert them into corresponding or equavalent MySQL database tables.
The java program could run on either MySQL machine or Informix machine.
I guess I should have JDBC drivers for both MySQL and Informix on the machine where the java program will run. Then I need to open a connection through JDBC driver to Informix database (remotely if necessary), and do selections, and open a connection to MySQL through JDBC driver again and do insertions. Is this correct?
Could anyone be kind to provide me more information about how to do it?
Thanks in advance.