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.
Is it possible to pickup only the closest comment above the the current SQL, e.g.
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.
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 ...