本文整理汇总了Python中useless.db.midlevel.StatementCursor.sequences方法的典型用法代码示例。如果您正苦于以下问题:Python StatementCursor.sequences方法的具体用法?Python StatementCursor.sequences怎么用?Python StatementCursor.sequences使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类useless.db.midlevel.StatementCursor
的用法示例。
在下文中一共展示了StatementCursor.sequences方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: dtable
# 需要导入模块: from useless.db.midlevel import StatementCursor [as 别名]
# 或者: from useless.db.midlevel.StatementCursor import sequences [as 别名]
if __name__ == '__main__':
from useless.db.midlevel import StatementCursor
from useless.sqlgen.statement import Statement
from paella.debian.base import parse_packages, full_parse
from paella.profile.base import PaellaConnection
def dtable():
cmd.execute('drop table ptable')
def dtables():
for t in cmd.tables():
if t != 'footable':
cmd.execute('drop table %s' %t)
#start_schema(cmd, traits)
#rp = Repos('/mirrors/debian')
#ps = rp.parse('contrib')
#prows = [package_to_row(p) for p in ps.values()]
conn = PaellaConnection()
cursor = StatementCursor(conn)
from paella.sqlgen.defaults import LogTable, ActionIdentifier
ai = ActionIdentifier()
if ai.name not in cursor.sequences():
cursor.create_sequence(ai)
m = MachinesTable('mumu', 'fifi', 'jojo', 'yoyo')
ml = LogTable(m)