Fixed MS SQL Server connection string (#3881)

* Fixed MS SQL Server connection string

https://community.home-assistant.io/t/holy-cow-ms-sql-server-recorder-creates-tables-in-master-db/30462

* Update recorder.markdown
This commit is contained in:
VDRainer 2017-11-03 23:56:02 +01:00 committed by Fabian Affolter
parent 045c032a61
commit ba3ff3bd0a

View File

@ -113,7 +113,7 @@ action:
| MySQL (pymysql) | `mysql+pymysql://user:password@SERVER_IP/DB_NAME` |
| PostgreSQL | `postgresql://SERVER_IP/DB_NAME` |
| PostgreSQL | `postgresql://scott:tiger@SERVER_IP/DB_NAME` |
| MS SQL Server | `mssql+pymssql://user:pass@SERVER_IP/?charset=utf8` |
| MS SQL Server | `mssql+pymssql://user:pass@SERVER_IP/DB_NAME?charset=utf8` |
## {% linkable_title Installation notes %}