Reputation: 901
I'm using Oracle Developer Tools for VS Code Extension. When I run a SQL statement a Results Tab opens displaying the SQL statement and records retrieved.
How can I hide the SQL statement in the Results tab? I don't want to see it with my data rows.
This is the Extension:
This is the SQL Tab:
Upvotes: 3
Views: 807
Reputation: 301
This can be controlled using the oracledevtools.query.echo
setting, but note you'll need to reload any windows before the setting will take effect:
You may also wiuth to bump the oracledevtools.query.resultSet.pageSize
setting to 25 at the same time:
Upvotes: 3