17 lines
358 B
Plaintext
17 lines
358 B
Plaintext
---
|
|
title: Microsoft SQL Server
|
|
hide_title: true
|
|
sidebar_position: 30
|
|
version: 1
|
|
---
|
|
|
|
## SQL Server
|
|
|
|
The recommended connector library for SQL Server is [pymssql](https://github.com/pymssql/pymssql).
|
|
|
|
The connection string for SQL Server looks like this:
|
|
|
|
```
|
|
mssql+pymssql://<Username>:<Password>@<Host>:<Port-default:1433>/<Database Name>/?Encrypt=yes
|
|
```
|