支持mongodb

This commit is contained in:
inrgihc
2023-08-21 23:19:01 +08:00
parent ae1d28f896
commit 3ee96f87c6
42 changed files with 634 additions and 33 deletions

View File

@@ -45,6 +45,7 @@
├── dbswitch-product-sybase // -> sybase方言实现类
├── dbswitch-product-hive // -> hive方言实现类
├── dbswitch-product-sqlite // -> sqlite方言实现类
├── dbswitch-product-mongodb // -> mongodb方言实现类
├── dbswitch-data // 工具入口模块,读取配置文件中的参数执行异构迁移同步
├── dbswitch-admin // 在以上模块的基础上引入Quartz的调度服务与接口
├── dbswitch-admin-ui // 基于Vue2的前段WEB交互页面
@@ -343,6 +344,13 @@ jdbc驱动名称org.sqlite.JDBC
>
> (d) SQLite为单写多读方式禁止人为方式造成多写导致锁表。
**MongoDB数据库**
```
jdbc连接地址jdbc:mongodb://172.17.2.12:27017/test?authSource=admin&authMechanism=SCRAM-SHA-1
jdbc驱动名称com.wisecoders.dbschema.mongodb.JdbcDriver
```
#### (2)、启动方法
- linux系统下