Displaying Java source code in the debugger
The debugger looks in a set of locations for source code files with .java extension.
In Sybase Central, select Mode > Debug.
When prompted to select the user to debug, specify * for all users and click OK.
From the debugger interface, select Debug > Set Java Source Code Path.
Enter the path to the java subdirectory of your Sybase IQ installation directory. For example, if you installed Sybase IQ in %IQDIR15%, enter:
%IQDIR15%\java
Click OK, and close the window.
The Java Source Code 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 %IQDIR15%\java and c:\Java\src to the source path, and the debugger is trying to find a class called iqdemo.Product, it looks for the source code in %IQDIR15%\asa\java\asademo\Product.Java and c:\Java\src\my\ iqdemo\Product.Java