python连接sqlserver数据库_Python基于Pymssql模块实现连接SQL Server数据库的方法详解...
时间: 2023-07-20 14:08:32 浏览: 194
Python可以通过Pymssql模块来连接SQL Server数据库。下面是连接SQL Server数据库的详细步骤:
1. 安装Pymssql模块
在命令行中输入以下命令来安装Pymssql模块:
```python
pip install pymssql
```
2. 导入Pymssql模块
在Python文件中导入Pymssql模块:
```python
import pymssql
```
3. 创建连接
使用pymssql.connect()方法创建连接:
```python
conn = pymssql.connect(server='localhost', user='username', password='password', database='database_name')
```
其中,server是SQL Server的地址,user是登录用户名,password是登录密码,database是要连接的数据库名称。
4. 创建游标
使用conn.cursor()方法创建游标:
```python
cursor = conn.cursor()
```
5. 执行SQL语句
使用cursor.execute()方法执行SQL语句:
```python
cursor.execute('SELECT * FROM table_name')
```
6. 获取结果
使用cursor.fetchall()方法获取查询结果:
```python
result = cursor.fetchall()
```
7. 关闭连接
使用conn.close()方法关闭连接:
```python
conn.close()
```
完整代码示例:
```python
import pymssql
# 创建连接
conn = pymssql.connect(server='localhost', user='username', password='password', database='database_name')
# 创建游标
cursor = conn.cursor()
# 执行SQL语句
cursor.execute('SELECT * FROM table_name')
# 获取结果
result = cursor.fetchall()
# 关闭连接
conn.close()
```
阅读全文