cmill
cmill

Reputation: 901

VS Code Oracle Developer Hide SQL in Results Window

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:

enter image description here

This is the SQL Tab:

enter image description here

This is the SQL Results Tab: enter image description here

Upvotes: 3

Views: 807

Answers (1)

user2519832
user2519832

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:

oracledevtools.query.echo setting

You may also wiuth to bump the oracledevtools.query.resultSet.pageSize setting to 25 at the same time:

oracledevtools.query.resultSet.pageSize setting

Upvotes: 3

Related Questions