与Dremio打开ODBC连接时,Golang的解析错误

发布于 2025-01-23 03:56:25 字数 652 浏览 0 评论 0 原文

在ODBC连接到Golang的Dremio时,我会遇到错误。这是我的代码段:

connURL, _ := url.ParseRequestURI("http://dremio.abc.domain.com:32010/")
connString := fmt.Sprintf("%v://%v:%v@%v", connURL.Scheme, "user_name", "pass?word", connURL.Host)

conn, err := sql.Open("dremio", connString)

我遇到的错误是:

2022/04/20 18:07:05 Parse “ http:// user_name::32010“:无效港口 “:通过”主机退出状态1

如果我删除'?'从密码。有人可以帮助我对此代码进行更改,以便使用“?”的密码。不丢失错误?

I am getting error while opening ODBC connection to Dremio in Golang. Here is my code snippet:

connURL, _ := url.ParseRequestURI("http://dremio.abc.domain.com:32010/")
connString := fmt.Sprintf("%v://%v:%v@%v", connURL.Scheme, "user_name", "pass?word", connURL.Host)

conn, err := sql.Open("dremio", connString)

The error which I am getting is:

2022/04/20 18:07:05 parse
"http://user_name:[email protected]:32010": invalid port
":pass" after host exit status 1

This error doesn't appear if I remove '?' from the password. Can someone help me to make changes in this code, such that the password with '?' doesn't throw an error?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文