天天向上,

导航

2020年11月9日 #

flask orm

摘要: 常用的SQLAlchemy字段类型 类型名 python中类型 说明 Integer int 普通整数,一般是32位 SmallInteger int 取值范围小的整数,一般是16位 BigInteger int或long 不限制精度的整数 Float float 浮点数 Numeric decim 阅读全文

posted @ 2020-11-09 20:27 天天向上, 阅读(74) 评论(0) 推荐(0) 编辑

flask CRUD

摘要: 增删改查 增加 from db_demo import app,db,User user = User(mobile=‘13112345678‘,name= ‘小红‘) db.session.add(user)#这个session是临时保存上传数据用的 db.session.commit() 也可以 阅读全文

posted @ 2020-11-09 20:21 天天向上, 阅读(101) 评论(0) 推荐(0) 编辑