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


Python Query.available_params方法代码示例

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


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

示例1: validate

# 需要导入模块: from explorer.models import Query [as 别名]
# 或者: from explorer.models.Query import available_params [as 别名]
 def validate(self, value):
     query = Query(sql=value)
     if not query.available_params():
         error = query.error_messages()
         if error:
             raise ValidationError(
                 _(error),
                 params={'value': value},
                 code="InvalidSql"
             )
开发者ID:azizmb,项目名称:django-sql-explorer,代码行数:12,代码来源:forms.py

示例2: validate

# 需要导入模块: from explorer.models import Query [as 别名]
# 或者: from explorer.models.Query import available_params [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():
            error = query.try_execute()

        if error:
            raise ValidationError(
                _(error),
                code="InvalidSql"
            )
开发者ID:ersherr,项目名称:django-sql-explorer,代码行数:21,代码来源:forms.py

示例3: validate

# 需要导入模块: from explorer.models import Query [as 别名]
# 或者: from explorer.models.Query import available_params [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)

        passes_blacklist, failing_words = query.passes_blacklist()

        error = MSG_FAILED_BLACKLIST % ', '.join(failing_words) if not passes_blacklist else None

        if not error and not query.available_params():
            try:
                query.execute_query_only()
            except DatabaseError as e:
                error = str(e)

        if error:
            raise ValidationError(
                _(error),
                code="InvalidSql"
            )
开发者ID:grantmcconnaughey,项目名称:django-sql-explorer,代码行数:26,代码来源:forms.py


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