We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e68bc59 commit 9af6055Copy full SHA for 9af6055
clickhouse_options.go
@@ -302,6 +302,8 @@ func (o *Options) fromDSN(in string) error {
302
o.Auth.Username = params.Get(v)
303
case "password":
304
o.Auth.Password = params.Get(v)
305
+ case "database":
306
+ o.Auth.Database = params.Get(v)
307
case "client_info_product":
308
chunks := strings.Split(params.Get(v), ",")
309
go.mod
@@ -1,7 +1,8 @@
1
module github.com/ClickHouse/clickhouse-go/v2
2
3
-go 1.22.0
4
-toolchain go1.24.1
+go 1.23.0
+
5
+toolchain go1.24.2
6
7
require (
8
github.com/ClickHouse/ch-go v0.65.1
0 commit comments