|
Sybernet / Supplied Procedures Reference
Release 3.00 Apr 17, 2005 |
|
This procedure lists the source of functions, packages, and procedures. The output is colorized and numbered.
Procedure SP_HTML_LIST
(
PROCNAME VARCHAR2
, NUMBERED PL/SQL BOOLEAN
, TABSIZE NUMBER
) ;
| Parameter | Description |
|---|---|
procname |
The object name to list. procname can be a function, pacakge, or stored procedure. |
numbered |
This option determines if the output is numbered. The default is true. |
tabsize |
Determines how many spaces a tab character represents. The default is 4. |
The following example illustrates how to call sp_html_list:
BEGIN
HTTP.SP_HTML_LIST('HTTP.SP_HTML_LIST');
END;