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


Python types.SchemaType方法代码示例

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


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

示例1: _is_type_bound

# 需要导入模块: from sqlalchemy import types [as 别名]
# 或者: from sqlalchemy.types import SchemaType [as 别名]
def _is_type_bound(constraint):
    # this deals with SQLAlchemy #3260, don't copy CHECK constraints
    # that will be generated by the type.
    if sqla_100:
        # new feature added for #3260
        return constraint._type_bound
    else:
        # old way, look at what we know Boolean/Enum to use
        return (
            constraint._create_rule is not None and
            isinstance(
                getattr(constraint._create_rule, "target", None),
                sqltypes.SchemaType)
        ) 
开发者ID:jpush,项目名称:jbox,代码行数:16,代码来源:sqla_compat.py

示例2: __init__

# 需要导入模块: from sqlalchemy import types [as 别名]
# 或者: from sqlalchemy.types import SchemaType [as 别名]
def __init__(self):
            TypeDecorator.__init__(self)
            sqltypes.SchemaType.__init__(self) 
开发者ID:sqlalchemy,项目名称:sqlalchemy,代码行数:5,代码来源:test_metadata.py

示例3: test_before_parent_attach_typedec_enclosing_schematype

# 需要导入模块: from sqlalchemy import types [as 别名]
# 或者: from sqlalchemy.types import SchemaType [as 别名]
def test_before_parent_attach_typedec_enclosing_schematype(self):
        # additional test for [ticket:2919] as part of test for
        # [ticket:3832]

        class MySchemaType(sqltypes.TypeEngine, sqltypes.SchemaType):
            pass

        target_typ = MySchemaType()

        class MyType(TypeDecorator):
            impl = target_typ

        typ = MyType()
        self._test_before_parent_attach(typ, target_typ, double=True) 
开发者ID:sqlalchemy,项目名称:sqlalchemy,代码行数:16,代码来源:test_metadata.py

示例4: test_before_parent_attach_typedec_of_schematype

# 需要导入模块: from sqlalchemy import types [as 别名]
# 或者: from sqlalchemy.types import SchemaType [as 别名]
def test_before_parent_attach_typedec_of_schematype(self):
        class MyType(TypeDecorator, sqltypes.SchemaType):
            impl = String

        typ = MyType()
        self._test_before_parent_attach(typ) 
开发者ID:sqlalchemy,项目名称:sqlalchemy,代码行数:8,代码来源:test_metadata.py

示例5: test_before_parent_attach_schematype_of_typedec

# 需要导入模块: from sqlalchemy import types [as 别名]
# 或者: from sqlalchemy.types import SchemaType [as 别名]
def test_before_parent_attach_schematype_of_typedec(self):
        class MyType(sqltypes.SchemaType, TypeDecorator):
            impl = String

        typ = MyType()
        self._test_before_parent_attach(typ) 
开发者ID:sqlalchemy,项目名称:sqlalchemy,代码行数:8,代码来源:test_metadata.py


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