You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
在 Byzer Notebook 中的设置中添加 sqlserver(或其他非 mysql 的db)数据源
填入参数,参数可参考如下
CONNECT jdbc where
url="${JDBC_URL}"
and driver = "com.microsoft.sqlserver.jdbc.SQLServerDriver"
and databaseName = "${DB_NAME}"
and user= "${USER_NAME}"
and password = "${PASSWORD}"
and encrpty="true"
and trustServerCertificate="true"
as mssql_db_poc;
检测连接时就一直报错
原因分析
Byzer Notebook 的添加数据源的功能中是依靠引擎的 SQLJDBC ET 来实现的,该 ET 实现的过于简单,只传递了部分参数,对于其他的参数都没有办法传递,导致通过 SQLJDBC ET 实现的功能都没有办法支持非 mysql 的数据库 (比如 load jdbc 语句中的 direct query)
预期
功能表现预期:Notebook 配置 sqlserver 功能连接正常
SQLJDBC ET 可以动态处理传入的参数,来支持不同的 jdbc 完成 direct query 的功能实现
注意, 此issue需要更改 Byzer 引擎中 SQLJDBC 的实现
The text was updated successfully, but these errors were encountered:
Reproduce Step:
在 Byzer Notebook 中的设置中添加 sqlserver(或其他非 mysql 的db)数据源
填入参数,参数可参考如下
原因分析
Byzer Notebook 的添加数据源的功能中是依靠引擎的 SQLJDBC ET 来实现的,该 ET 实现的过于简单,只传递了部分参数,对于其他的参数都没有办法传递,导致通过 SQLJDBC ET 实现的功能都没有办法支持非 mysql 的数据库 (比如 load jdbc 语句中的 direct query)
预期
功能表现预期:Notebook 配置 sqlserver 功能连接正常
SQLJDBC ET 可以动态处理传入的参数,来支持不同的 jdbc 完成 direct query 的功能实现
注意, 此issue需要更改 Byzer 引擎中 SQLJDBC 的实现
The text was updated successfully, but these errors were encountered: