Skip to content

Commit a202e72

Browse files
authored
Merge pull request #544 from albcunha/patch-1
Update mssql.md
2 parents 1e642af + 9c9bfbc commit a202e72

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

docs/databases/mssql.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ SQLServer does not need to specify protocol.
99
By adding `trusted_connection=true` to connection uri parameter, windows authentication will be enabled. Example: `mssql://host:port/db?trusted_connection=true`
1010
By adding `encrypt=true` to connection uri parameter, SQLServer will use SSL encryption. Example: `mssql://host:port/db?encrypt=true&trusted_connection=true`
1111
```
12+
```{hint}
13+
if the user password has special characters, they need to be sanitized. example: `from urllib import parse; password = parse.quote_plus(password)`
14+
```
1215

1316
```py
1417
import connectorx as cx

0 commit comments

Comments
 (0)