{% if error or results %}

Query Results

{% if results %}

{{ results|length }} rows returned

{% endif %}
{% if error %}
Execution Error: {{ error }}
{% endif %} {% if results %}
{% for col in columns %} {% endfor %} {% for row in results %} {% for col in columns %} {% endfor %} {% endfor %}
{{ col }}
{{ row[col] if row[col] is not none else 'NULL' }}
{% endif %}
{% endif %}