December 2002
Intermediate to advanced
745 pages
17h 26m
English
Forms are perhaps the most common way of sending data from one page to another on the Web. However, there are other ways that information is passed from one page to another. This section guides you through passing parameters in a URL, in PL/SQL itself, and within JavaScript.
In PL/SQL, parameters can be passed when a procedure or function is called. The procedure being called must have IN parameters that can receive the data. This holds true regardless of whether a PL/SQL procedure contains Web Toolkit functionality.
Suppose a procedure starts like this.
FOR EXAMPLE
CREATE OR REPLACE PROCEDURE subway (p_line IN VARCHAR2, p_passengers IN NUMBER) AS… ...