本文整理汇总了Python中explorer.models.Query.try_execute方法的典型用法代码示例。如果您正苦于以下问题:Python Query.try_execute方法的具体用法?Python Query.try_execute怎么用?Python Query.try_execute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类explorer.models.Query
的用法示例。
在下文中一共展示了Query.try_execute方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: validate
# 需要导入模块: from explorer.models import Query [as 别名]
# 或者: from explorer.models.Query import try_execute [as 别名]
def validate(self, value):
"""
Ensure that the SQL passes the blacklist and executes. Execution check is skipped if params are present.
:param value: The SQL for this Query model.
"""
query = Query(sql=value)
error = MSG_FAILED_BLACKLIST if not query.passes_blacklist() else None
if not error and not query.available_params():
try:
query.try_execute()
except DatabaseError as e:
error = str(e)
if error:
raise ValidationError(
_(error),
code="InvalidSql"
)