本文整理汇总了Python中webp.utils.db.DB.commit方法的典型用法代码示例。如果您正苦于以下问题:Python DB.commit方法的具体用法?Python DB.commit怎么用?Python DB.commit使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类webp.utils.db.DB
的用法示例。
在下文中一共展示了DB.commit方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: delete
# 需要导入模块: from webp.utils.db import DB [as 别名]
# 或者: from webp.utils.db.DB import commit [as 别名]
def delete(tac_id):
db = DB()
if Tac.has(tac_id):
return "a task is running!"
sql = "delete from tac where id=%d" % tac_id
db.execute(sql)
db.commit()
return True
示例2: update
# 需要导入模块: from webp.utils.db import DB [as 别名]
# 或者: from webp.utils.db.DB import commit [as 别名]
def update(dic):
db = DB()
sql = "update tac set name='%s',description='%s',key_1='%s',value_1='%s',key_2='%s',value_2='%s',key_3='%s',value_3='%s',key_4='%s',value_4='%s',key_5='%s',value_5='%s' where id=%d" \
% tuple([ dic[key] for key in (
'name', 'description',
'key_1', 'value_1',
'key_2', 'value_2',
'key_3', 'value_3',
'key_4', 'value_4',
'key_5', 'value_5',
'tac_id',
)])
db.execute(sql)
db.commit()
return True
示例3: del_func_tac_rel
# 需要导入模块: from webp.utils.db import DB [as 别名]
# 或者: from webp.utils.db.DB import commit [as 别名]
def del_func_tac_rel(func_tac_id):
db = DB()
db.execute("delete from func_tac_rel where id=%d" % func_tac_id)
db.commit()