diff --git a/docs/document/content/user-manual/shardingsphere-proxy/yaml-config/data-source.cn.md b/docs/document/content/user-manual/shardingsphere-proxy/yaml-config/data-source.cn.md index a66406cd32a45..51cc806077fbe 100644 --- a/docs/document/content/user-manual/shardingsphere-proxy/yaml-config/data-source.cn.md +++ b/docs/document/content/user-manual/shardingsphere-proxy/yaml-config/data-source.cn.md @@ -16,9 +16,9 @@ ShardingSphere-Proxy 支持常见的数据库连接池: HikariCP、C3P0、DBCP dataSources: # 数据源配置,可配置多个 : # 数据源名称 dataSourceClassName: # 数据源连接池完整类名 - url: # 数据库 URL 连接,以数据库连接池自身配置为准 - username: # 数据库用户名,以数据库连接池自身配置为准 - password: # 数据库密码,以数据库连接池自身配置为准 + url: # 数据库 URL 连接 + username: # 数据库用户名 + password: # 数据库密码 # ... 数据库连接池的其它属性 ``` ## 配置示例 diff --git a/docs/document/content/user-manual/shardingsphere-proxy/yaml-config/data-source.en.md b/docs/document/content/user-manual/shardingsphere-proxy/yaml-config/data-source.en.md index b8f52059efb60..0f44b8507578b 100644 --- a/docs/document/content/user-manual/shardingsphere-proxy/yaml-config/data-source.en.md +++ b/docs/document/content/user-manual/shardingsphere-proxy/yaml-config/data-source.en.md @@ -16,9 +16,9 @@ The connection pool can be specified through the parameter `dataSourceClassName` dataSources: # Data sources configuration, multiple available : # Data source name dataSourceClassName: # Data source connection pool full class name - url: # The database URL connection is subject to the configuration of the data source connection pool itself - username: # Database username, subject to the configuration of the data source connection pool itself - password: # The database password is subject to the configuration of the data source connection pool itself + url: # The database URL connection + username: # Database username + password: # The database password # ... Other properties of data source pool ``` ## Sample