{% if error %}
Query Error
{{ error }}
{% elif columns %}
{{ row_count }} rows ยท {{ execution_time_ms }}ms
{% for col in columns %} {% endfor %} {% for row in rows %} {% for cell in row %} {% endfor %} {% endfor %}
{{ col }}
{% if cell is none %}NULL{% else %}{{ cell }}{% endif %}
{% else %}
Run a query to see results
{% endif %}