This section describes the hypertext procedures, hypertext functions, and utilities that make up the Oracle WebServer PL/SQL Web Toolkit.
Hypertext Procedures (HTP)
A hypertext procedure generates a line in an HTML document that contains the HTML tag that corresponds to its name. For instance, the htp.anchor procedure generates an anchor tag. The HTP package will be the most commonly used package of the three.Hypertext Functions (HTF)
A hypertext function returns the HTML tag that corresponds to its name. However, it is not sufficient to call an HTF function on its own because the HTML tag is not passed to the PL/SQL Agent. The output of an HTF function must be passed to htp.print in order to actually be part of an HTML document. Thus, the following line: htp.print(htf.italic('Title')); htp.italic('Title'); htp.header(1,htf.italic('Title')); <I>Title</I>
<H1><I>Title</I></H1>
OWA Utilities (OWA_UTIL)
This is a collection of useful utility procedures and functions. The purposes of these range from printing a signature tag on HTML pages to easy formatting of Oracle tables into HTML.OWA
This is a set of procedures called only by the Oracle PL/SQL Agent itself. None of the subprograms in this package should be called directly from user-developed PL/SQL.Pattern Matching Utilities (OWA_PATTERN)
This is a set of procedures and functions you can use to perform string matching and substitution with rich regular expression functionality.Text Manipulation Utilities (OWA_TEXT)
This is a set of procedures, functions, and datatypes used by OWA_PATTERN for manipulating large data strings. They are externalized so you can use them directly if you wish.Image Map Utilities (OWA_IMAGE)
This is a set of datatypes and functions for manipulating HTML image maps.Cookie Utilities (OWA_COOKIE)
This is a set of datatypes procedures, and functions for manipulating HTML cookies.
Go to the next topic.
To report any problems or comments, e-mail Oracle WebServer Documentation.