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

SQLAlchemy-Utils,提供choice功能

时间:2018-01-13 00:11:59      阅读:1176      评论:0      收藏:0      [点我收藏+]

标签:types   import   lis   list   blog   har   choices   span   session   

SQLAlchemy操作数据库建表时,无法像Django一样提供choice方法,我们开头导入SQLAlchemy-Utils来为我们提供这个功能

pip3 install sqlalchemy-utils
from sqlalchemy_utils import ChoiceType

            Base = declarative_base()


            class Xuan(Base):
                __tablename__ = xuan
                types_choices = (
                    (1,欧美),
                    (2,日韩),
                    (3,国产),
                )
                id = Column(Integer,primary_key=True,autoincrement=True)
                name = Column(String(64))
                types = Column(ChoiceType(types_choices,Integer()))

                __table_args__ = {
                    mysql_engine:Innodb,
                    mysql_charset:utf8,
                }

查询:

result_list = session.query(Xuan).all()
            for item in result_list:
                    print(item.types.code,item.types.value)

 

SQLAlchemy-Utils,提供choice功能

标签:types   import   lis   list   blog   har   choices   span   session   

原文地址:https://www.cnblogs.com/ctztake/p/8277844.html

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