You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2023/01/20 04:37:41 UTC

[GitHub] [doris] morningman commented on a diff in pull request #16093: [feature](jdbc catalog) support SQLServer jdbc catalog

morningman commented on code in PR #16093:
URL: https://github.com/apache/doris/pull/16093#discussion_r1080939455


##########
docs/zh-CN/docs/lakehouse/multi-catalog/jdbc.md:
##########
@@ -31,34 +31,36 @@ JDBC Catalog 通过标准 JDBC 协议,连接其他数据源。
 
 ## 使用限制
 
-1. 支持 MySQL、PostgreSQL、Oracle、Clickhouse
+1. 支持 MySQL、PostgreSQL、Oracle、SQLServer、Clickhouse
 
 ## 创建 Catalog
 
 1. MySQL
 
 	```sql
-	CREATE CATALOG jdbc_mysql PROPERTIES (
+	CREATE CATALOG jdbc_mysql_resource PROPERTIES (
 	    "type"="jdbc",
 	    "user"="root",
 	    "password"="123456",
 	    "jdbc_url" = "jdbc:mysql://127.0.0.1:3306/demo",
 	    "driver_url" = "mysql-connector-java-5.1.47.jar",
 	    "driver_class" = "com.mysql.jdbc.Driver"
-	)
+	);
+	create catalog mysql_catalog with resource jdbc_mysql_resource; 

Review Comment:
   here we don't use resource, use catalog directly



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org