本文整理汇总了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