vscode-sqlite icon indicating copy to clipboard operation
vscode-sqlite copied to clipboard

[Feature Request] Heading label above query output

Open ellerychan opened this issue 2 years ago • 0 comments

Would it be possible to add an (optional) header label to the navigation bar above the query output? It could be taken from a comment line above the SQL statement, perhaps if it contains some markup characters. It would make the SQLite output more readable, especially when the outputs from multiple queries are shown at once.

An example:

-- ## Quantity of Images, by Category
select category, count(*) from Images group by category;

ellerychan avatar Feb 03 '23 16:02 ellerychan