"Bug" in context menu

TenGor

Member³
Hy,

i've noticed a flaw in the context menu (right-click in a Command Window, Editor Tab).

If i had the code

Code:
DELETE FROM table
 WHERE 1 = 1;
an right-click on "table" the context menu show not the full things for a table. Same with Update. There is no problem with Insert into and Select?
 
Hy,

Well i found it. The Code must be like this:

Code:
PROMPT table
DELETE FROM table
 WHERE 1 = 1;
 
Back
Top