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