• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python types.adapt_type函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: type_descriptor

 def type_descriptor(self, typeobj):
     if isinstance(typeobj, type):
         typeobj = typeobj()
     if isinstance(typeobj, sqltypes.Unicode):
         return typeobj.adapt(MaxUnicode)
     else:
         return sqltypes.adapt_type(typeobj, colspecs)
开发者ID:AntonNguyen,项目名称:easy_api,代码行数:7,代码来源:maxdb.py


示例2: type_descriptor

    def type_descriptor(self, typeobj):
        """Provide a database-specific ``TypeEngine`` object, given
        the generic object which comes from the types module.

        This method looks for a dictionary called
        ``colspecs`` as a class or instance-level variable,
        and passes on to ``types.adapt_type()``.

        """
        return sqltypes.adapt_type(typeobj, self.colspecs)
开发者ID:Am3s,项目名称:CouchPotatoServer,代码行数:10,代码来源:default.py


示例3: type_descriptor

 def type_descriptor(self, typeobj):
     return sqltypes.adapt_type(typeobj, colspecs)
开发者ID:RetroRodent,项目名称:my-gozerbot,代码行数:2,代码来源:firebird.py


示例4: type_descriptor

 def type_descriptor(self, typeobj):
     newobj = types.adapt_type(typeobj, self.colspecs)
     return newobj
开发者ID:wdxtub,项目名称:11601-imdb-crawler,代码行数:3,代码来源:base.py


示例5: type_descriptor

 def type_descriptor(self, typeobj):
     newobj = sqltypes.adapt_type(typeobj, self.colspecs)
     # Some types need to know about the dialect
     if isinstance(newobj, (MSText, MSNVarchar)):
         newobj.dialect = self
     return newobj
开发者ID:Frihet,项目名称:sqlalchemy-patches,代码行数:6,代码来源:mssql.py


示例6: type_descriptor

 def type_descriptor(self, typeobj):
   """ Inputs: generic type to be converted
       Returns: converted adapter type
   """
   return sa_types.adapt_type(typeobj, colspecs)
开发者ID:exedre,项目名称:ibm-db,代码行数:5,代码来源:ibm_db_sa.py


示例7: type_descriptor

 def type_descriptor(self, typeobj):
     if self.version == 2:
         return sqltypes.adapt_type(typeobj, pg2_colspecs)
     else:
         return sqltypes.adapt_type(typeobj, pg1_colspecs)
开发者ID:nakedible,项目名称:vpnease-l2tp,代码行数:5,代码来源:postgres.py



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python types.to_instance函数代码示例发布时间:2022-05-27
下一篇:
Python schema.Table类代码示例发布时间:2022-05-27
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap