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

Execute current statement without highlighting.

Open turbosheep44 opened this issue 3 years ago • 1 comments

Usually when I am working, I write a lot of temporary queries in the same file. This means that it's usually more useful for me to run the query under the cursor instead of running the whole file.

select * from books;
select * from authors;
select * from comme|nts;

For example, if my cursor is where the | is in the file above, and I use the new command Run Current Statement, then I would like for only the 3rd statement (select * from comments) to be run.

turbosheep44 avatar Dec 31 '21 08:12 turbosheep44