28 Running and Debugging PL/SQL and Java Stored Procedures
This chapter includes the following sections:
About Running and Debugging PL/SQL and Java Stored Procedures
Learn how to run and debug Java in a database.
A Java stored procedure is a Java method that resides and runs in a database. Stored procedures can help improve the performance of database applications because they are efficient: they are stored in the RDBMS in executable form, and run in the RDBMS (rather than the client) memory space.
When you deploy a Java class to the database, you can select the methods that you want to publish to PL/SQL for use as stored procedures. Methods can be deployed together in a package or separately.
Running and Debugging Functions, Procedures, and Packages
Learn about running and debugging functions, procedures, and packages.
JDeveloper lets you run and debug PL/SQL program units. For example, you can specify parameters being passed or return values from a function giving you more control over what is run and providing you output details about what was tested.
Note:
The procedures or functions in Oracle Database can be either standalone or within a package.
To run or debug functions, procedures, and packages:
-
Choose Window > Database > Databases window.
-
Expand IDE Connections or application, and select a database connection.
-
Expand a schema and expand the appropriate node depending on what you are debugging (Procedure, Function, or Package body):
-
(Optional for debugging only) Right-click and choose Compile for Debug from the context menu of the node for the object that you are debugging. This compiles the PL/SQL program in
INTERPRETED
mode. -
(Optional for debugging only) Select the function, procedure, or package that you want to debug and double-click to open it in the editor.
-
(Optional for debugging only) Set a breakpoint in your PL/SQL code by clicking to the left of the margin.
Note:
The breakpoint must be set on an executable line of code. If the debugger does not stop, the breakpoint may have not been set on an executable line of code (verify that the breakpoint was verified).
-
-
Make sure that either the editor or the procedure in the Databases window is currently selected.
-
Click Debug, or if you want to run without debugging, click Run.
-
The Run PL/SQL dialog is displayed.
-
Select a Target which is the name of the procedure or function that you want to debug. Notice that the content in the Parameters and PL/SQL Block boxes change dynamically when the target changes.
Note:
You will have a choice of target only if you choose to run or debug a package that contains more than one program unit
-
The Parameters box lists the target's arguments (if applicable).
-
The PL/SQL Block box displays code that was custom generated by JDeveloper for the selected target. Depending on what the function or procedure does, you may need to replace the NULL values with reasonable values so that these are passed into the procedure, function, or package. In some cases, you may need to write additional code to initialize values to be passed as arguments. In this case, you can edit the PL/SQL block text as necessary.
-
-
Click OK to execute or debug the target.
-
Analyze the output information displayed in the Log window. In the case of functions, the return value will be displayed.
DBMS_OUTPUT
messages will also be displayed.
Debugging PL/SQL Programs and Java Stored Procedures
Learn how to debug PL/SQL programs and Java stored procedures in Oracle Databases.
Debugging PL/SQL Objects
JDeveloper supports both PL/SQL and Java stored procedures debugging in a single IDE tool. When debugging PL/SQL, the source code you are debugging must be stored in Oracle Database. For Java stored procedures, the source code should be in your JDeveloper project and the compiled code should be deployed in the database.
Also, the way the debug action is initiated is different depending on whether you are performing local or remote debugging. When debugging PL/SQL, this distinction is described as follows:
-
Local debugging - JDeveloper automatically launches the program you want to debug, also referred to as the debuggee process, and then attaches the debugger to that program.
-
Remote debugging - You must manually launch the program you want to debug with an Oracle client such as SQL*Plus, Dbms_Job, an OCI program, or a trigger firing. You must then establish the connection from the database debuggee process to the JDeveloper debugger. After the debuggee is launched and the JDeveloper debugger is attached to it, remote debugging is very similar to local debugging.
PL/SQL and Java stored procedure debugging information is displayed in the various JDeveloper debugger windows including the Smart Data, Data, Watches, Inspector, Stack, and Classes windows.
The Threads window, Heap window, and Monitors window are not applicable when debugging PL/SQL code.
When debugging PL/SQL, the user can use PL/SQL expressions in the Watches and Inspector windows as well as conditional breakpoints, including table element access; for example, mytable(i*10). This capability includes tables which are declared in functions, procedures, packages, and package bodies.
PL/SQL objects you can debug with JDeveloper
You can debug a PL/SQL program calling PL/SQL, PL/SQL calling a Java stored procedure (Oracle9i Release 2 and later databases), and a PL/SQL program issuing a SQL statement that fires a trigger.
You can initiate debugging PL/SQL from the following objects:
-
Stand-alone procedures
-
Stand-alone functions
-
Packaged procedures
-
Packaged functions
Any other PL/SQL object can be traced into as long as it meets the prerequisites, and as long as it is invoked from one of the above. See Debugging PL/SQL and Java Stored Procedures Prerequisites.
What You May Need to Know
Consider the following when debugging triggers, Java stored procedures, and Oracle object types:
-
Although you cannot initiate debugging for these objects, you can step into them. For example, you cannot start debugging a trigger, but you can debug a procedure that adds records. To debug a trigger, set a breakpoint in the trigger, then debug the procedure that causes the trigger to fire. The debugger will stop at that breakpoint.
-
Debugging and stepping into Java stored procedures is supported in the Oracle9i Release 2 and later databases. These procedures should be included in the JDeveloper project and the source should be consistent with what is deployed in Oracle Database. To debug a Java stored procedure, set a breakpoint in the Java stored procedure, then debug the PL/SQL that calls the Java stored procedure. Alternatively, you can debug the PL/SQL and step into the Java stored procedure.
Appearance of debug information in supported Oracle Database
The debugger uses the database's JPDA (Java Platform Debugger Architecture) implementation. JPDA is the industry standard for Java debugging and the JPDA implementation in the database allows you to seamlessly debug Java and PL/SQL.
What You May Need to Know
-
If you want to configure the debugging behavior (for remote debugging or for setting the Classes Include and Exclude lists), you must have an active application and project to access the project's debugger settings in the Application > Project Properties - Run/Debug/Profile page.
-
The following command is used to connect the debuggee session to the debugger:
DBMS_DEBUG_JDWP.CONNECT_TCP( <host_name>, <port> )
For local debugging, JDeveloper issues this command for you. For remote debugging, you will need to issue this command in the same session that you use to call the PL/SQL you want to debug.
-
When entering an expression in the Watches window, local variables can be entered in any case; for example,
v_value
orV_Value
. Package variables are also case-insensitive, but the prefix leading up to the variable name is case-sensitive; for example:$Oracle.Package.SCOTT.MY_PACKAGE.g_var
The simplest way to add a package variable to the Watches window is to drag and drop the variable from the Data Window or to drag and drop the package from the Classes Window.
How to Specify the Database Debugger Port
When the database debugger is running, for example to debug PL/SQL through a database connection, the ports used are randomly assigned. This can cause problems with firewalls, and to avoid them you can edit the ide.properties file to ensure that a specific port is used.
To specify the port:
Debugging PL/SQL and Java Stored Procedures Prerequisites
You can debug PL/SQL and Java stored procedures in JDeveloper.
Refer to the appropriate section below for additional information.
Prerequisites for Debugging PL/SQL and Java Stored Procedures
Ensure that the following prerequisites have been met before performing PL/SQL debugging:
-
Your database user account must have these privileges:
DEBUG ANY PROCEDURE
DEBUG CONNECT SESSION
-
The PL/SQL code must be compiled in
INTERPRETED
mode. You cannot debug PL/SQL code that is compiled inNATIVE
mode. You set this mode in the database'sinit.ora
file. See Oracle Database documentation for more information about this file. -
If you do not have an active application and project, the debugger will use the properties defined in the Default Project Properties dialog, available from the Application menu. However, it is recommended that you create a application and a project that you will use when you debug PL/SQL. In the Launch Settings page of the Edit Run Configuration dialog (Edit button on the Run/Debug/Profile page of the Project Properties dialog, which is available from the Application menu), you should ensure that the Attempt to Run Active File Before Default check box is selected (default setting). This will instruct the debugger to run the active file (for example a PL/SQL procedure selected in the Applications window or open the active file in the editor) when you start debugging.
-
PL/SQL objects must be compiled with the
DEBUG
option enabled. Choose one of these techniques to accomplish this task:-
Ensure that Generate PL/SQL Debug Information is selected in Database Connections page of the Preferences dialog (available from the Tools menu), then create or recompile the objects you want to debug.
-
In SQL*Plus, execute
ALTER SESSION SET PLSQL_DEBUG = true
, then create or recompile the object you want to debug. -
In SQL*Plus, execute
ALTER <procedure, function, package> <name> COMPILE DEBUG;
-
Prerequisites for Debugging Java Stored Procedures
Ensure that the following prerequisites have been met before performing Java stored procedures debugging:
-
The Java code must be deployed to the database and compiled with debug information. From JDeveloper, make sure the Include Debug Information check box is selected in the Compiler page of the Project Properties dialog (available from the Application menu), then deploy the Java stored procedure.
-
To step through a Java stored procedure, the Java source must be available in your JDeveloper project and must be consistent with what is deployed to the database.
How to Locally Debug PL/SQL Programs
When locally debugging PL/SQL programs, the call to initiate debugging is made directly from within JDeveloper. JDeveloper automatically launches the program you want to debug, also referred to as the debuggee process, and then attaches the debugger to that program.
Make sure that you've completed the prerequisites listed above.
To locally debug a PL/SQL program in JDeveloper:
How to Remotely Debug PL/SQL Programs
The main difference between remote debugging and local debugging PL/SQL programs is how you start the debugging session. For remote debugging, you must manually launch the program you want to debug with an Oracle client such as SQL*Plus, Dbms_Job, an OCI program, or a trigger firing. You must then establish the connection from the database program you want to debug (debuggee) to the JDeveloper debugger. After the debuggee is launched and the JDeveloper debugger is attached to it, remote debugging is very similar to local debugging.
You can use the remote debugger with PL/SQL programs and Java stored procedures in Oracle Database.
Make sure that you've completed the documented prerequisites, listed in Debugging PL/SQL and Java Stored Procedures Prerequisites.
To remotely debug a PL/SQL program using JDeveloper:
Using Acceptable Legal PL/SQL Expressions in the Debugger
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 table lists examples of acceptable legal PL/SQL expressions that you can use in the debugger.
Table 28-1 PL/SQL Expressions that can be used in the debugger
PL/SQL Expression | Example |
---|---|
Simple variable name |
|
Field Access |
|
Table element |
|
Comparison operation |
|
Arithmetic operation |
|
Logical operation |
|
Package variable name |
|
Fully-qualified Package name |
|
PackageBody variable name |
|
Fully-qualified PackageBody name |
|