开发者

how to make Mysqldatabase converter in c#

i want to make Mysql Database converter that can obtain the data from Database A to database B.

both database have same table and column.

how i can make t开发者_Python百科hem using c#.

are anyone show me flow or how i can do it


Try the following steps:

  • Execute the query to retrieve the data from database A;

  • For every record retrieved, insert a new record into database B.

This mechanism can be automated by automatically creating queries and inserts. To retrieve the tables and fields in a MySQL database, refer to the INFORMATION_SCHEMA tables in MySQL. Using the information retrieved from these tables, you can automatically construct the required queries and migrate an entire database automatically.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜