Display Java source code into the debugger

The debugger looks in a set of locations for source code files (with .java extension). You need to add the /asa/javasubdirectory of your installation directory to the list of locations, so that the code for the class currently being executed in the database is available to the debugger.

StepsDisplaying Java source code in the debugger

  1. From the debugger interface, select File > Edit Source Path. The Source path window appears.

  2. Enter the path to the /asa/java subdirectory of your Sybase IQ installation directory. For example, if you installed Sybase IQ in %ASDIR%, you would enter the following:

    %ASDIR%\asa\java
    
  3. Click Apply, and close the window.

  4. In the Classes window, double-click JDBCExamples. The source code for the JDBCExamples class appears in the Source window.

    Shown is the the source window displaying code for the J D B C examples class

Notes on locating Java source code

The Source Path window holds a list of directories in which the debugger looks for Java source code. Java rules for finding packages apply. The debugger also searches the current CLASSPATH for source code.

For example, on Windows, if you add the paths %ASDIR%\asa\java and c:\Java\src to the source path, and the debugger is trying to find a class called asademo.Product, it looks for the source code in c:\Program Files\Sybase\ASIQ-12_6\asa\java\asademo\Product.Java and c:\Java\src\my\ asademo\Product.Java