码迷,mamicode.com
首页 > 数据库 > 详细

连接mysql数据库,创建用户模型

时间:2017-11-14 22:29:14      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:l数据库   bug   debug   pytho   mode   div   用户   orm   end   


  1. 安装与配置python3.6+flask+mysql数据库
    1. 下载安装MySQL数据库
    2. 下载安装MySQL-python 中间件
    3. pip install flask-sqlalchemy (Python的ORM框架SQLAlchemy)
  2. mysql创建数据库
  3. 数据库配置信息config.py
  4. 建立mysql和app的连接
  5. 创建用户模型

 

from flask import Flask
from flask import render_template
from flask_sqlalchemy import SQLAlchemy
import config

app = Flask(__name__)
app.config.from_object(config)
db=SQLAlchemy(app)

class User(db.Model):
    __tablename__ = user
    id=db.Column(db.Integer,primary_key=True,autoincrement=True)
    username=db.Column(db.String(20),nullable=False)   
    password=db.Column(db.String(20),nullable=False)

db.create_all()  

@app.route(/) def hello_world(): return render_template(base.html) @app.route(/login) def login(): return render_template(login.html) @app.route(/regist) def regist(): return render_template(regist.html) @app.route(/fabu) def fabu(): return render_template(fabu.html) if __name__ == __main__: app.run(debug=True)
SQLALCHEMY_DATABASE_URI = mysql+pymysql://root:@localhost:3306/mis_db?charset=utf8
SQLALCHEMY_TRACK_MODIFICATIONS = False

 

连接mysql数据库,创建用户模型

标签:l数据库   bug   debug   pytho   mode   div   用户   orm   end   

原文地址:http://www.cnblogs.com/xfy1317/p/7830970.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!