From 9c9bfbc6e3659b19bf344f86b04280372b86dd20 Mon Sep 17 00:00:00 2001 From: albcunha Date: Wed, 20 Sep 2023 22:36:44 -0300 Subject: [PATCH] Update mssql.md Add extra hint for creating conn on sql server --- docs/databases/mssql.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/databases/mssql.md b/docs/databases/mssql.md index b345fd8705..f637f4ec81 100644 --- a/docs/databases/mssql.md +++ b/docs/databases/mssql.md @@ -9,6 +9,9 @@ SQLServer does not need to specify protocol. By adding `trusted_connection=true` to connection uri parameter, windows authentication will be enabled. Example: `mssql://host:port/db?trusted_connection=true` By adding `encrypt=true` to connection uri parameter, SQLServer will use SSL encryption. Example: `mssql://host:port/db?encrypt=true&trusted_connection=true` ``` +```{hint} +if the user password has special characters, they need to be sanitized. example: `from urllib import parse; password = parse.quote_plus(password)` +``` ```py import connectorx as cx