How to copy a database table to another database matching with TSQLConnection / dbExpress?

I am using C ++ Builder (or Delphi 2007 and XE2) using DBExpress. I connected two databases for Firebird (my local hard drive) for MySQL (on the Internet) using TSQLConnection. Then, my question is ... how can I use (make) a SQL statement (or something else) to copy one table in Firebird to another table in MySQL? Any comment would be very valuable .. thanks a lot in advance.

+4
source share
1 answer

You cannot copy content from a Firebird table to a MySQL table using an SQL statement. Another RDBMS has this functionality, for example, Sql Server has Linked Servers , and the MySQL FEDERATED engine (works only for MySQL databases).

So, I have two options for solving this problem:

+6
source

Source: https://habr.com/ru/post/1379190/


All Articles