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


Python DAO.update方法代码示例

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


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

示例1: update_follow_count

# 需要导入模块: from models.DAO import DAO [as 别名]
# 或者: from models.DAO.DAO import update [as 别名]
	def update_follow_count(tale_id, value):
		DAO.update(
			'''
			UPDATE anaddventure.tale
				SET tale_follow_count = tale_follow_count + (%s)
				WHERE tale_id = (%s)
			''',
			(value, tale_id)
		)
开发者ID:tayllan,项目名称:anaddventure,代码行数:11,代码来源:Tale.py

示例2: update_contribution_request_count

# 需要导入模块: from models.DAO import DAO [as 别名]
# 或者: from models.DAO.DAO import update [as 别名]
	def update_contribution_request_count(tale_id, value):
		DAO.update(
			'''
			UPDATE anaddventure.tale
				SET tale_contribution_request_count = tale_contribution_request_count + (%s)
				WHERE tale_id = (%s)
			''',
			(value, tale_id)
		)
开发者ID:tayllan,项目名称:anaddventure,代码行数:11,代码来源:Tale.py

示例3: update_all

# 需要导入模块: from models.DAO import DAO [as 别名]
# 或者: from models.DAO.DAO import update [as 别名]
	def update_all(tale_id, title, description, category, license_id):
		DAO.update(
			'''
			UPDATE anaddventure.tale
				SET tale_title = (%s),
					tale_description = (%s),
					tale_category = (%s),
					tale_license = (%s)
				WHERE tale_id = (%s)
			''',
			(title, description, category, license_id, tale_id)
		)
开发者ID:tayllan,项目名称:anaddventure,代码行数:14,代码来源:Tale.py

示例4: update_title_and_content

# 需要导入模块: from models.DAO import DAO [as 别名]
# 或者: from models.DAO.DAO import update [as 别名]
	def update_title_and_content(contribution_request_id, title, content):
		return DAO.update(
			'''
			UPDATE anaddventure.contribution_request
				SET contribution_request_title = (%s),
					contribution_request_content = (%s)
				WHERE contribution_request_id = (%s)
			''',
			(title, content, contribution_request_id)
		)
开发者ID:tayllan,项目名称:anaddventure,代码行数:12,代码来源:Contribution_Request.py

示例5: update_was_accepted

# 需要导入模块: from models.DAO import DAO [as 别名]
# 或者: from models.DAO.DAO import update [as 别名]
	def update_was_accepted(contribution_request_id, was_accepted):
		return DAO.update(
			'''
			UPDATE anaddventure.contribution_request
				SET contribution_request_was_accepted = (%s),
					contribution_request_was_closed = True
				WHERE contribution_request_id = (%s)
			''',
			(was_accepted, contribution_request_id)
		)
开发者ID:tayllan,项目名称:anaddventure,代码行数:12,代码来源:Contribution_Request.py

示例6: update_download_count

# 需要导入模块: from models.DAO import DAO [as 别名]
# 或者: from models.DAO.DAO import update [as 别名]
	def update_download_count(chapter_id):
		return DAO.update(
			"UPDATE anaddventure.chapter SET chapter_download_count = chapter_download_count + 1 WHERE chapter_id = (%s)",
			(chapter_id, )
		)
开发者ID:tayllan,项目名称:anaddventure,代码行数:7,代码来源:Chapter.py

示例7: update_title_and_content

# 需要导入模块: from models.DAO import DAO [as 别名]
# 或者: from models.DAO.DAO import update [as 别名]
	def update_title_and_content(chapter_id, title, content):
		return DAO.update(
			"UPDATE anaddventure.chapter SET chapter_title = (%s), chapter_content = (%s) WHERE chapter_id = (%s)",
			(title, content, chapter_id)
		)
开发者ID:tayllan,项目名称:anaddventure,代码行数:7,代码来源:Chapter.py


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