{% extends "base.html" %} {% block title %}Query - SQLite DBaaS{% endblock %} {% block content %}
code
Query Editor
{% if error %}
error
Query Error
{{ error }}
{% endif %} {% if results %}
check_circle
Results
{{ results|length }} rows returned
{% if results|length > 0 %}
{% for col in columns %} {% endfor %} {% for row in results %} {% for col in columns %} {% endfor %} {% endfor %}
{{ col }}
{{ row[col] if row[col] != None else 'NULL' }}
{% else %}
search_off
No results
{% endif %}
{% endif %}
bolt
Quick Queries
Common operations
{% endblock %}