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


Python orm.Database方法代码示例

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


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

示例1: test_common_pony

# 需要导入模块: from pony import orm [as 别名]
# 或者: from pony.orm import Database [as 别名]
def test_common_pony():
    db = orm.Database()

    class Account(db.Entity):
        name = orm.Required(str)
        msgn_id = orm.Required(int)
        auth_code = orm.Required(str)

    db.bind('sqlite', ':memory:', create_db=True)
    db.generate_mapping(create_tables=True)
    orm.sql_debug(True)

    @orm.db_session
    def test():
        Account(name="haje01", msgn_id=3498, auth_code="1234")
        a = Account(name="haje02", msgn_id=2345, auth_code="1234")
        assert len(orm.select(a for a in Account)) == 2
        assert len(orm.select(a for a in Account if a.msgn_id == 2345)) == 1
        a.delete()
        assert len(orm.select(a for a in Account)) == 1

    test() 
开发者ID:haje01,项目名称:chabi,代码行数:24,代码来源:test_common.py

示例2: safe_db_init

# 需要导入模块: from pony import orm [as 别名]
# 或者: from pony.orm import Database [as 别名]
def safe_db_init(db, sqlite_file):
    """Safe DB binding, mapping

    In automated test, multiple DB binds can occur, and cause
        "Database object already bound" error. This function
        handle error of duplicated binding.
    """
    try:
        db.bind('sqlite', sqlite_file, create_db=True)
    except TypeError:
        pass
    else:
        try:
            db.generate_mapping(create_tables=True)
        except orm.core.MappingError:
            pass 
开发者ID:haje01,项目名称:chabi,代码行数:18,代码来源:models.py


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