Contents Index Display Java source code in the debugger Run the method

ASA SQL User's Guide
  Debugging Logic in the Database
    Tutorial: Getting started with the debugger
      Lesson 3: Debug a Java class

Set a breakpoint

Set a breakpoint in a Java class

  1. In the source code window, page down until you see the beginning of the Query method. This method is near the end of the class, and starts with the following line:

    public static int Query() {
  2. Click the gray column on the the left of the line until it shows a red circle.

    int max_price = 0;

    Repeatedly clicking the indicator toggles its status.


Contents Index Display Java source code in the debugger Run the method