基本知识
在官方的Quckstart中,我了解到,Peewee中Model类
、fields实例
和model实例
与数据库的映射关系如下:
也就是说,一个Model类代表一个数据库的表,一个Field字段代表数据库表中的一个字段,而一个model类实例化对象则代表数据库表中的一行。
定义Model,建立数据库
第一种方式:
先定义Model,然后通过Model.create_table()或db.create_tables()创建表。
例如,我们需要建一个Person表,里面有name、birthday和is_relative三个字段,我们定义的Model如下:
from peewee import *
#建立数据库连接
test = MySQLDatabase('test', user='用户名', password='输入密码', host='数据库地址', port=3366)
#定义person表,CharField、DateField、BooleanField等这些类型与数据库中的数据类型一一对应
class Person(Model):
name = CharField()
birthday = DateField()
is_relative = BooleanField()
class Meta:
database = test
#通过Model.create_table()创建表
#Person.create_table()
#通过db.create_tables()创建表
test.create_tables([Person])
说明:本人使用pycharm工具,需要安装peewee、PYMYSQL插件
运行:
image.png
结果:
db=test,sql=show create table person\G
*************************** 1. row ***************************
Table: person
Create Table: CREATE TABLE `person` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`birthday` date NOT NULL,
`is_relative` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
第二种方式
对存在的数据库,则直接通过python -m pwiz批量创建Model。
例如,以第一种方式创建好test库,并且创建了Person表,表中拥有id、name、birthday和is_relative字段。那么,我可以使用下面命令:
(venv) D:\pythonProject\flask-test>python -m pwiz -e mysql -u myslh -H 127.0.0.1 -p 3366 --password CottonXu test > testModel.py
Password:
然后,输入密码,pwiz模块会自动创建Model脚本testModel.py,内容如下:
from peewee import *
database = MySQLDatabase('test', **{'charset': 'utf8', 'sql_mode': 'PIPES_AS_CONCAT', 'use_unicode': True, 'host': '127.0.0.1', 'port': 3366, 'user': 'myslh', 'password': 'CottonXu'})
class UnknownField(object):
def __init__(self, *_, **__): pass
class BaseModel(Model):
class Meta:
database = database
class Person(BaseModel):
birthday = DateField()
is_relative = IntegerField()
name = CharField()
class Meta:
table_name = 'person'
操作数据库
操作数据库,就是增、删、改和查。
一、增
直接创建实例,然后使用save()就添加了一条新数据
# 添加一条数据
p = Person(name='tanglb', birthday=datetime.date(1986, 2, 15), is_relative=True)
p.save()
p = Person(name='pqq', birthday=datetime.date(1990, 10, 3), is_relative=False)
p.save()
二、删
使用delete().where().execute()进行删除,where()是条件,execute()负责执行语句。若是已经查询出来的实例,则直接使用delete_instance()删除。
# 删除姓名为tanglb的数据
Person.delete().where(Person.name == 'tanglb').execute()
# 已经实例化的数据, 使用delete_instance
p = Person(name='tanglb', birthday=datetime.date(1986, 2, 15), is_relative=True)
p.id = 4
p.delete_instance()
三、改
若是,已经添加过数据的的实例或查询到的数据实例,且表拥有primary key时,此时使用save()就是修改数据;若是未拥有实例,则使用update().where()进行更新数据。
# 已经实例化的数据,指定了id这个primary key,则此时保存就是更新数据
p = Person(name='tanglb', birthday=datetime.date(1986, 2, 15), is_relative=False)
p.id = 5
p.save()
# 更新birthday数据
q = Person.update({Person.birthday: datetime.date(1982, 3, 24)}).where(Person.name == 'tanglb')
q.execute()
四、查
单条数据使用Person.get()就行了,也可以使用Person.select().where().get()。若是查询多条数据,则使用Person.select().where(),去掉get()就行了。语法很直观,select()就是查询,where是条件,get是获取第一条数据。
# 查询单条数据
p = Person.get(Person.name == 'tanglb')
print(p.name, p.birthday, p.is_relative)
# 使用where().get()查询
p = Person.select().where(Person.name == 'tanglb').get()
print(p.name, p.birthday, p.is_relative)
# 查询多条数据
persons = Person.select().where(Person.is_relative == False)
for p in persons:
print(p.name, p.birthday, p.is_relative)
网友评论