支持clickhouse

This commit is contained in:
inrgihc
2023-09-19 22:47:55 +08:00
parent 14ee86bcd1
commit 77736a26ac
14 changed files with 422 additions and 1 deletions

View File

@@ -45,6 +45,7 @@
├── dbswitch-product-sybase // -> sybase方言实现类
├── dbswitch-product-hive // -> hive方言实现类
├── dbswitch-product-sqlite // -> sqlite方言实现类
├── dbswitch-product-clickhouse// -> clickhouse方言实现类
├── dbswitch-product-mongodb // -> mongodb方言实现类
├── dbswitch-data // 工具入口模块,读取配置文件中的参数执行异构迁移同步
├── dbswitch-admin // 在以上模块的基础上引入Quartz的调度服务与接口
@@ -320,6 +321,13 @@ jdbc连接地址dbc:opengauss://172.17.2.10:5866/test
jdbc驱动名称org.opengauss.Driver
```
**ClickHouse数据库**
```
jdbc连接地址jdbc:clickhouse://172.17.2.10:8123/default
jdbc驱动名称com.clickhouse.jdbc.ClickHouseDriver
```
**SQLite数据库**
```