Teach you how to integrate and connect multiple databases of different types without code

In the case where there are multiple unrelated and different types of databases, if you want to connect them together and integrate them and show them to users, in addition to the traditional use of Spring multi-data sources to build the solution, you can pass the white code platform without Code to be integrated.

This no-code solution has two database connection methods:

  1. Through the database connection URL, directly connect to the customer's original database (cloud database or public network can connect to the database).
  2. Connect to the customer's local database through the port mapping tool.

Take the connection between the chart of accounts in the SQL server 2008/R2 database in Navicat and the receipt table in the MySQL 8.0 database as an example:

1) Configure the chart of accounts in the SQL server database

  • Database version: MySQL8.0
  • Database connection url: mysql://127.0.0.1:3306/taobao?user=admin&password=123456
  • Database table name: dlyndx (document table)
  • Primary key of database table: Vchcode (multiple primary keys are separated by ",")

Teach you how to integrate and connect multiple databases of different types without code
Teach you how to integrate and connect multiple databases of different types without code
After saving, you can see the data in the database on the white code platform

Teach you how to integrate and connect multiple databases of different types without code
Teach you how to integrate and connect multiple databases of different types without code

2) Configure the receipt table in the MySQL database

  • Database version: MySQL8.0
  • Database connection url: mysql://127.0.0.1:3306/taobao?user=admin&password=123456
  • Database table name: dlyndx (document table)
  • Primary key of database table: Vchcode (multiple primary keys are separated by ",")

Teach you how to integrate and connect multiple databases of different types without code
Teach you how to integrate and connect multiple databases of different types without code
After saving, you can see the data in the database on the white code platform

Teach you how to integrate and connect multiple databases of different types without code
Teach you how to integrate and connect multiple databases of different types without code

Guess you like

Origin blog.51cto.com/11283856/2534772