If you are debugging PL/SQL, then you can use PL/SQL expressions in the Watches window, Inspector window, Breakpoint conditions, and Breakpoint Log expressions.
The following are examples of acceptable legal PL/SQL expressions that you can use in the debugger:
counter
myrecord.Dept_No
mytable(3)
myrecord.Dept_No = 100
mytable(3) > 7
counter IS NULL
counter IS NOT NULL
employee.salary BETWEEN 25000 AND 50000
counter * size
x + y + z
employee.exempt AND employee.active
employee.exempt OR employee.active
$Oracle.Package.SCOTT.MyPackage.MyVariable
$Oracle.Package.SCOTT
$Oracle.PackageBody.SCOTT.MyPackage.MyVariable
$Oracle.PackageBody.SCOTT
Related topics
Debugging PL/SQL and Java Stored
Procedures
Using Acceptable Legal Java Expressions in JDeveloper
Copyright © 1997, 2004, Oracle. All rights reserved.