Select in Mysql and insert in Firebird [closed]

1

How to do a "select" in the Mysql / Mariadb database and "insert" the data collected in firebird (interbase).

    
asked by anonymous 21.12.2016 / 19:51

1 answer

1

Hello, you must connect to both databases simultaneously.

After executing SELECT in MySQL you will have a variable array or object containing the information, done that you connect in the FireBird and mount the INSERT using this variable.

    
28.12.2016 / 14:17