如何在Visual Studio 2015社区中使用python连接到MySql数据库?我已经在我的项目环境中安装了pymssql。我还需要做什么?我添加了以下连接字符串,当我运行我的项目时它不起作用:
from datetime import datetime
from flask import render_template
from SchoolsPortal import app
import pymssql
connection = pymssql.connect(server='localhost', user='root', password='admin', database='testschool')
print('Connected')
@app.route('/')
@app.route('/home')
def home():
"""Renders the home page."""`enter code here`
return render_template(
'index.html',
title='Home Page',`enter code here`
year=datetime.now().year,
)
答案 0 :(得分:1)
问题是pymssql适用于Microsoft SQL而不是MySQL。您希望通过pip:pip3 install mysqlclient
为python 3x安装包mysqlclient,或者如果您使用的是python 2.7x pip install MySQLdb
。我希望有所帮助。请阅读此答案here。