Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SNOW-1337069 connection pool doc fix #958

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion doc/Connecting.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
To connect to Snowflake, specify a valid connection string composed of key-value pairs separated by semicolons,
i.e "\<key1\>=\<value1\>;\<key2\>=\<value2\>...".

**Note**: If the keyword or value contains an equal sign (=), you must precede the equal sign with another equal sign. For example, if the keyword is "key" and the value is "value_part1=value_part2", use "key=value_part1==value_part2".
**Note**: If the value specified in the connection string contains any signs like semicolon (`;`) or equal sign (`=`) or any phrases which can interfere with parsing the connection string,
please surround the value with double quotation marks (`""`). For example `password="=;;;=dummy==password;;"`.

The following table lists all valid connection properties:
<br />
Expand Down
Loading