Grouply add variables to watch

Sparrow

Member
pl\sql variable doesn't can contains in name character "," therefore when we choos a few variable split ',' and click "Add variable to watch", we can split choosed text by ',' and add all variables to watch.

When we choose function or procedure and clicked "Add variable to watch" then added new variable to watch with name equals name procedure or function. Good solve on this case add all variables from function to watch
 
Last edited:
For example, I have procedure like as:

SQL:
procedure CalcSomething(npBase number)
 as
   idvMain number;
   nvQty   number;
   svName  varchar2(100);
   nvSize  number;
 begin
   select t.idMain
        , t.nQty
        , t.sName
        , t.nSize
     into idvMain
        , nvQty
        , svName
        , nvSize
     from table t;

    ...
 end;

I want that when I debugged this procedure and I selected all variable in block into query and click in context menu "Add variable to watches". All variable added in watches.
And when I select procedure(click on CalcSomething) and open context menu then I click "Add variable to watches" I want that all variable in this procedure add in watches.

URL]


P.S. I'm sorry for my English language skill.
 
Last edited:
Back
Top