SQL Window: Adding coments to SQL

CTzen

Member³
Marco,

it looks like PLD adds ALL the comments above the current SQL I'm executing, which is not very good idea. From what I see it picks up everything until it reaches previous SQL statement.
pld_comments.jpg


Is it possible to pickup only the closest comment above the the current SQL, e.g.

Code:
/* Ignore this one */

/* Pick this one */
SELECT ...

-- Ignore this one
-- SELECT ...

-- Pick this one
SELECT ...
 
Back
Top