当前位置: 首页>>代码示例>>Python>>正文


Python SessionFactory.create_tables方法代码示例

本文整理汇总了Python中tinyms.core.orm.SessionFactory.create_tables方法的典型用法代码示例。如果您正苦于以下问题:Python SessionFactory.create_tables方法的具体用法?Python SessionFactory.create_tables怎么用?Python SessionFactory.create_tables使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在tinyms.core.orm.SessionFactory的用法示例。


在下文中一共展示了SessionFactory.create_tables方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: DemoTable

# 需要导入模块: from tinyms.core.orm import SessionFactory [as 别名]
# 或者: from tinyms.core.orm.SessionFactory import create_tables [as 别名]
__author__ = '[email protected]'
from sqlalchemy import create_engine
from sqlalchemy.pool import QueuePool
from sqlalchemy import Column, Integer, Text

from tinyms.core.orm import SessionFactory, Entity, many_to_one


class DemoTable(Entity):
    fid = Column(Integer())
    main = Column(Text())
    client = Column(Text())


@many_to_one("DemoTable", True)
class OtherTable(Entity):
    asia = Column(Text)

SessionFactory.__engine__ = create_engine("sqlite:///d:/temp/db.s3db", echo=True, poolclass=QueuePool, pool_size=100)
SessionFactory.create_tables()
开发者ID:tinyms,项目名称:TanYue,代码行数:22,代码来源:orm_test.py


注:本文中的tinyms.core.orm.SessionFactory.create_tables方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。