create_engine连接SQL server python
时间: 2023-09-10 10:06:39 浏览: 251
python连接SQLserver
使用Python连接SQL Server需要使用ODBC驱动程序和pyodbc库。以下是一个示例代码,可以连接到SQL Server数据库:
```
import pyodbc
server = 'your_server_name'
database = 'your_database_name'
username = 'your_username'
password = 'your_password'
driver= '{ODBC Driver 17 for SQL Server}' # 根据自己的ODBC驱动程序版本进行修改
cnxn = pyodbc.connect('DRIVER=' + driver + ';SERVER=' + server + ';DATABASE=' + database + ';UID=' + username + ';PWD=' + password)
cursor = cnxn.cursor()
# 执行SQL查询
cursor.execute("SELECT * FROM your_table_name")
# 获取结果
for row in cursor:
print(row)
```
在上面的代码中,您需要将 `your_server_name`,`your_database_name`,`your_username`,`your_password` 和 `your_table_name` 替换为相应的值。如果您不知道这些信息,请联系您的数据库管理员。
阅读全文