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


Python Schema.setPrimaryKey方法代码示例

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


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

示例1: typeDef

# 需要导入模块: from schema import Schema [as 别名]
# 或者: from schema.Schema import setPrimaryKey [as 别名]
 def typeDef(self, name):
     schema = Schema()
     if self.lex.matchKeyword('int'):
         self.lex.eatKeyword('int')
         if self.checkPrimaryKey():
             schema.setPrimaryKey(name)
         schema.addField(name, {'type':'int','length': 0 })
     else:
         self.lex.eatKeyword('varchar')
         self.lex.eatDelim('(')
         num = self.lex.eatNum()
         if num > self.maxVarcharLen or num <= 0:
             raise RuntimeError('Invalid varchar length.')
         self.lex.eatDelim(')')
         if self.checkPrimaryKey():
             schema.setPrimaryKey(name)
         schema.addField(name, {'type':'char', 'length': num})
     
     return schema
开发者ID:ju5td0m7m1nd,项目名称:DataBason,代码行数:21,代码来源:sqlparser.py


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