DBA Data[Home] [Help]

OWAPUB.OWA_UTIL dependencies on STANDARD

Line 88: /* return a standard HTTP status code to the client. */

84: bclose_header in boolean DEFAULT TRUE);
85:
86: /* STATUS_LINE will output "Status: \n\n" */
87: /* This allows the PL/SQL program to tell the HTTP server to */
88: /* return a standard HTTP status code to the client. */
89: /* The call to STATUS_LINE MUST be come before any htp calls in */
90: /* order to signal the HTTP server to return the status as part */
91: /* of the HTTP header instead of as "content data". */
92: /* This functionality is only available with OWA 1.5 or above. */

Line 120: /* alignment follows the HTML 3.0 current standards for default */

116: procedure show_query_columns(ctable in varchar2);
117:
118: /* TABLEPRINT will print out an entire Oracle table either as */
119: /* an HTML table, or as a "pre-formatted" table. The table */
120: /* alignment follows the HTML 3.0 current standards for default */
121: /* alignment - column headings are CENTERED while table data is */
122: /* LEFT justified. */
123: /* */
124: /* TABLEPRINT takes the following parameters: */

Line 248: /* used in standard footer routine. */

244: INVALID_QUERY exception;
245:
246:
247: /* Utility routine used to figure out who called you. Can be */
248: /* used in standard footer routine. */
249: procedure who_called_me( owner out varchar2,
250: name out varchar2,
251: lineno out number,
252: caller_t out varchar2 );