Skip to content

Commit 8c64ac7

Browse files
committed
The example Clickhouse DSN incorrectly described how to set the username and password.
The example: `clickhouse://username:password@host:port/database=clicks?x-multi-statement=true` did not work, but: `clickhouse://host:port?username=user&password=password&database=clicks&x-multi-statement=true` does. I got the above DSN format from the tests.
1 parent 03613f1 commit 8c64ac7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/clickhouse/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ClickHouse
22

3-
`clickhouse://username:password@host:port/database=clicks?x-multi-statement=true`
3+
`clickhouse://host:port?username=user&password=password&database=clicks&x-multi-statement=true`
44

55
| URL Query | Description |
66
|------------|-------------|

0 commit comments

Comments
 (0)