December 2002
Intermediate to advanced
745 pages
17h 26m
English
When something goes wrong, the first step is to identify which type of error you are seeing. The error could result from PL/SQL code, or from JavaScript, or from HTML code. It might even result from these errors working together.
You have two kinds of source code to look at:
Source code for the PL/SQL procedure
Source code for the HTML page (generated by the PL/SQL procedure)
Line numbers are different in the PL/SQL and in the HTML source code. Keep this in mind when you see an error message. PL/SQL error messages give line numbers that correspond to the PL/SQL procedure. JavaScript errors are generated by the browser, and if a line number is given in the error message, ...