I have this code
I do comment with Comment button.
The result is OK. The ", d.rowid" is commented.
I want to uncomment with Uncomment button. (First I click into the commented section)
And nothing happens.
If I type a space before beginning of comment
then the Uncomment tool works and the result is:
The ", d.rowid" is uncommented.
The cause of this problem is the * (asterisk) just before the beginning of comment.
SQL:
select d.*, d.rowid from dba_users d
I do comment with Comment button.
SQL:
select d.*/*, d.rowid*/ from dba_users d
The result is OK. The ", d.rowid" is commented.
I want to uncomment with Uncomment button. (First I click into the commented section)
SQL:
select d.*/*, d.rowid*/ from dba_users d
And nothing happens.
If I type a space before beginning of comment
SQL:
select d.* /*, d.rowid*/ from dba_users d
then the Uncomment tool works and the result is:
SQL:
select d.* , d.rowid from dba_users d
The ", d.rowid" is uncommented.
The cause of this problem is the * (asterisk) just before the beginning of comment.