DBA Data[Home] [Help]

SYS.OWA_UTIL dependencies on STANDARD

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

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

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

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

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

252: INVALID_QUERY exception;
253:
254:
255: /* Utility routine used to figure out who called you. Can be */
256: /* used in standard footer routine. */
257: procedure who_called_me( owner out varchar2,
258: name out varchar2,
259: lineno out number,
260: caller_t out varchar2 );