view data recod type when debugging

muttley

Member
Hi
how can I to see data when I am debugging ?

Example
mytype mytable%rowtype;

When I pouplate mytype or table of mytype, How can I to see the data ?

Thank you in advance
 
You can only see individual fields of the mtype record. For example, if you hover over an expression like mtype.id or enter mytype.id in the watch list, its value will be displayed.
 
Back
Top