Skip to content

Commit

Permalink
SNOW-1337069 connection pool doc fix (#958)
Browse files Browse the repository at this point in the history
### Description
SNOW-1337069 Fix note about special signs in connection string

### Checklist
- [x] Code compiles correctly
- [x] Code is formatted according to [Coding
Conventions](../blob/master/CodingConventions.md)
- [x] Created tests which fail without the change (if possible)
- [x] All tests passing (`dotnet test`)
- [x] Extended the README / documentation, if necessary
- [x] Provide JIRA issue id (if possible) or GitHub issue id in PR name
  • Loading branch information
sfc-gh-knozderko authored May 29, 2024
1 parent 921b9df commit 815f708
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 815f708

Please sign in to comment.