# | 61 |Status | 62 |Query | 63 |Query Time | 64 |Query Type | 65 |Database | 66 |Executed At | 67 |Exception Title | 68 ||||
---|---|---|---|---|---|---|---|---|---|---|
{{ idx + 1 }} | 78 |{{ statement.status }} | 79 |
80 |
81 | {{ statement.result.statement.text|default('') }}
82 |
83 |
84 | View details
85 |
86 |
87 |
88 |
102 |
89 | Parameters: {{ statement.result.statement.parameters|default([])|json_encode }}
90 |
91 |
92 | Alias: {{ statement.alias|default('N/A') }}
93 |
94 | {# TODO: Add scheme. Scheme is currently private in the underlying driver #}
95 | {# #}
96 | {# Scheme: {{ statement.scheme|default('N/A') }}#}
97 | {# #}
98 |
99 | Statistics: {{ statement|json_encode }}
100 |
101 | |
103 | {% if status is same as('success') %}{% if start_time is not null and end_time is not null %}{{ '%0.2f'|format(end_time - start_time) }}ms{% endif %}{% else %}N/A{% endif %} | 104 | {% if status is same as('success') %} 105 |{{ statement.result.queryType }} | 106 |{{ statement.result.databaseInfo.name }} | 107 | {% else %} 108 |N/A | 109 |N/A | 110 | {% endif %} 111 |{{ statement.time }} | 112 | {% if status is same as('success') %} 113 |N/A | 114 | {% else %} 115 |{{ statement.exception.title }} | 116 | {% endif %} 117 |