{{#if queryResult}}
{{queryResult.rowCount}} row(s).
{{queryResult.timeToFirstRow}} ms to read the first row.
{{queryResult.timeToReadRows}} ms to read the rest of the rows.
{{#each queryResult.columns}}
{{this}}
{{/each}}
{{#each queryResult.rows}}
{{#each this}}
{{#if (eq this null)}}null{{else}}{{{this}}}{{/if}}