当前位置:网站首页>Flask failed to create database without error
Flask failed to create database without error
2022-08-09 06:28:00 【Koala Rice Bowl】
The code that the teacher gave us to create a database:
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
app=Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI']='mysql://root:[email protected]:3306/text'
app.config['SQLALCHEMY_TRACK_MODIFICATIONS']=False
app.config['SQLALCHEMY_ECHO'] = True
db=SQLAlchemy(app)
class Role(db.Model):
__tablename__='roles'
id=db.Column(db.Integer,primary_key=True)
name=db.Column(db.String(16),unique=True)
class User(db.Model):
__tablename__='users'
id=db.Column(db.Integer,primary_key=True)
name=db.Column(db.String(16),unique=True)
role_id=db.Column(db.Integer,db.ForeignKey('roles.id'))
@app.route('/',methods=['post','get'])
def index():
return 'hello'
# 删除表
db.drop_all()
# 创建表
db.create_all()
if __name__=='__main__':
app.run(debug=True)
This above code maypython2.xRunning is correct but correct with what I installedpython环境是3.8It will run unsuccessfully but it will not report an error in the console
这是因为MySQLdb 只适用于python2.x,发现pip装不上.它在python3的替代品是: import pymysql
Add the following code to the import package
import pymysql
pymysql.install_as_MySQLdb()
看图:

边栏推荐
猜你喜欢

GNNExplainer应用于节点分类任务

Introduction of convenient functions and convenient shortcut keys of vs tomato assistant

运放-运算放大器经典应用电路大全-应用电路大全

Unity Gobang Game Design and Simple AI (2)

flask创建数据库失败未报错

How to find package information and pin definitions for NXP S32K1xx series microcontrollers
[email protected]@BSABiS nanoparticles) | dendrimer-stabilized bismuth sulfide nanop"/>Ferric oxide/bismuth sulfide nanocomposites ([email protected]@BSABiS nanoparticles) | dendrimer-stabilized bismuth sulfide nanop

CalBioreagents超全Id 蛋白兔单克隆抗体,助力科研

db.sqlite3没有“as Data Source“解决方法
![[GO], arrays and slices](/img/71/86126c41d0f43aa8b9f232b219f5d7.png)
[GO], arrays and slices
随机推荐
数据库中间件-jdbi
Unity backgammon game design and simple AI implementation (1)
Word文件的只读模式没有密码怎么退出?
Inception V3 闭眼检测
【Feel】Unity Feel插件中,Camera无法正确显示CameraShake
Bismuth sulfide nanorods with CT imaging function | Bismuth sulfide-zinc protoporphyrin composites (PAMAM/Bi2S3 composite nanoparticles)
中英文说明书丨TRC 交替醇(Catalogue NumberA575760)
C语言实现顺序栈和链队列
Fragments
为什么以太网无法接收大于1500字节的数据包?
默默重新开始,第一页也是新的一页
After the VB.net program is closed, the background is still connected to SQL
TCP segment of a reassembled PDU
电学知识的疑问
VS2019常用快捷键
tidb crash test
VB.net程序关闭后后台还在与SQL连接
程序性能分析 —— 复杂度分析
phpstudy install flarum forum
jdepend