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


Python types.adapt_type函数代码示例

本文整理汇总了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;未经允许,请勿转载。