FEATURE REQUEST: Comment Directives - Visualisation EMPTY RESULTS oder DISPLAY ONLY EMPTY RESULTS

D.Wenzel

Member²
Hello,
We have test scripts with lots of SQL statements and use the cool ‘Comment Directives’ feature for this

-- TAB=BLA
-- RECORDS=ALL
select .....

But then you end up with a bunch of TAB tabs and still have to click on them.

A) I would love to see a small annotation in the title e.g. the number of records or a Sting/Sign

-- TAB=BLA
-- TABCOUNT

or
# means the Hint to Display additional Strings
-- TAB=BLA
-- TABCOUNTSIGNALONLY #

B) Suppress tab without Data
-- TAB=BLA
-- TABHIDEMPTY


C) display tab only without Data
-- TAB=BLA
-- TABEMPTYONLY

Thanks, Daniel
 
I have added this to the list of enhancement requests. We could also implement a &count variable for the --TAB=<Name> comment directive, and maybe other variables. For example:

SQL:
-- TAB = All Employees (&Count)
select * from emp
order by empno;
 
Back
Top