{% extends 'base.htm' %} {% block title %}Query • estus{% endblock %} {% block content %}
SELECT ;

{% if result %}
Risultati della query
{% for row in result.keys() %} {% endfor %} {% for row in result %} {% for column in row %} {% endfor %} {% endfor %}
{{ row }}
{% if column is string %} {{ column }} {% elif column is number %} {{ column }} {% else %} {{ column }} {% endif %}
{% elif error %}
Errore nell'esecuzione della query
{{ error }}
{% endif %} {% endblock %}