Flask 数据库相关

Flask 数据库培训

mysql相关

可以在官网直接下载安装,安装完成登录后可以通过命令行创建数据库,当然也可以通过mysql workbench 来完成

安装下载地址:https://dev.mysql.com/downloads/file/?id=473576

MAC下,安装好后需要在系统偏好设置里面讲MySQL开启,并将对应的mysql加入环境变量,方便命令行访问


mysql -uroot -p

更换密码
SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');

初始化
SHOW DATABASES;
CREATE DATABASE test;

USE 库名;
CREATE TABLE 表名 (字段名 VARCHAR(20), 字段名 CHAR(1));
CREATE TABLE user (user_id INT NOT NULL , user_name VARCHAR(45));

show variables like 'max_connections';

python 的数据库驱动

python需要访问mysql,需要相应的驱动库,在python 2.x上使用 MySQLdb,在3.x上使用PyMySQL,通过pip安装就好。这些库用于Python链接Mysql数据库的接口,实现了 Python 数据库 API 规范 V2.0,基于 MySQL C API 上建立的。至此,就已经可以通过python访问数据库了

MySQLdb 是用于Python链接Mysql数据库的接口,它实现了 Python 数据库 API 规范 V2.0,基于 MySQL C API 上建立的。

当然也可以通过brew安装,安装brew

ruby -e "$(curl --insecure -fsSL
https://raw.githubusercontent.com/Homebrew/install/master/install)"

ruby -e "$(curl -fsSL
https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"

定义类:

def getConn():
    conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='password', db='test')
    return conn
class User(object):
    def __init__(self,user_id,user_name):
        self.user_id = user_id
        self.user_name = user_name

    def save(self):
        conn = getConn()
        cur= conn.cursor()
        sql = "insert into user (user_id,user_name) VALUES (%s , %s)"
 cur.execute(sql,(self.user_id,self.user_name))
        conn.commit()
        cur.close()
        conn.close()

    @staticmethod
 def query():
        conn = getConn()
        cur = conn.cursor()
        sql = "select * from user"
 cur.execute(sql)
        rows = cur.fetchall()
        users = []
        for r in rows:
            user = User(r[0],r[1])
            users.append(user)
        conn.commit()
        cur.close()
        conn.close()
        return users

    def __str__(self):
        return "id:{} name:{}".format(self.user_id,self.user_name)

访问:
def save():
    user = User(2,"name1")
    user.save()

def query():
    users = User.query()
    for i in users:
        print(i)

flask的sqlAlchemy,orm 和连接池

相信大家对ORM(Object Relational Mapping)都比较熟悉一个 ORM , 它的一端连着 Database, 一端连着 Python DataObject 对象。有了 ORM,可以通过对 Python 对象的操作,实现对数据库的操作,不需要直接写 SQL 语句。ORM 会自动将 Python 代码转换成对应的 SQL 语句。其余的操作,包括数据检查,生成 SQL 语句、事务控制、回滚等交由 ORM 框架来完成。

Python下ORM有sqlAlchemy,pony,peewee,Django's ORM等,这里使用sqlAlchemy

定义:
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI']="mysql://root:hubert@localhost:3306/mysql1" //配置项
db = SQLAlchemy(app)

class User(db.Model):
    user_id = db.Column(db.Integer, primary_key=True)
    user_name = db.Column(db.String(45), unique=True)
    def __init__(self, user_id,user_name):
        self.user_id = user_id
        self.user_name = user_name

    def __repr__(self):
        return '' % self.user_name
使用:
def add():
    use = User(user_id=4, user_name='test')
    db.session.add(use)
    db.session.commit()

连接池

sqlAlchemy 中自带连接池,具体使用见demo中的pool.py

http://flask-sqlalchemy.pocoo.org/2.3/

你可能感兴趣的:(Flask 数据库相关)