Queries Unavailable

The toolbar was unable to fetch the SQLAlchemy queries for this request. To enable the SQLAlchemy query display, please:

    {% if not json_available or not sqlalchemy_available %}
  1. Install required libraries:
  2. {% endif %} {% if not extension_used %}
  3. Configure Flask-SQLAlchemy:

    The Flask-SQLAlchemy extension needs to be configured for this application. Please see the Flask-SQLAlchemy documentation for details.

  4. {% endif %} {% if not recording_enabled %}
  5. Enable query recording:

    Since this app is not currently running in DEBUG mode, Flask-SQLAlchemy will not record queries by default. To enable query recording in non-debug mode, set the following configuration value:

    app.config['SQLALCHEMY_RECORD_QUERIES'] = True

    See the documention of Flask-SQLAlchemy's get_debug_queries() for additional details.

  6. {% endif %}