With JSP pages, you must add a Callable server behavior to a page to run a stored procedure.
Dreamweaver automatically fills in the Callable Text and Variables boxes.
Dreamweaver runs the stored procedure and displays the recordset, if any.
After you close the Callable (Stored Procedure) dialog box, JSP code is inserted in your page. When the code runs on the server, it calls a stored procedure in the database. The stored procedure in turn performs a database operation, such as inserting a record.
If the stored procedure takes parameters, you can create a page that gathers the parameter values and submits them to the page with the stored procedure. For example, you may create a page that uses URL parameters or an HTML form to gather parameter values from users.