DBA Data[Home] [Help]

SYS.OWA_TEXT dependencies on HTP

Line 114: htp.print(mline.rows(i));

110: is
111: begin
112: for i in 1..mline.num_rows
113: loop
114: htp.print(mline.rows(i));
115: end loop;
116: end;
117:
118: function new_row_list return row_list

Line 137: htp.print(rlist.rows(i));

133: is
134: begin
135: for i in 1..rlist.num_rows
136: loop
137: htp.print(rlist.rows(i));
138: end loop;
139: end;
140:
141: /* Just a debugging routine */

Line 145: htp.print(mline.num_rows);

141: /* Just a debugging routine */
142: procedure print_debug(mline in multi_line)
143: is
144: begin
145: htp.print(mline.num_rows);
146: if mline.partial_row
147: then htp.print('PARTIAL ROW');
148: else htp.print('NO PARTIAL ROW');
149: end if;

Line 147: then htp.print('PARTIAL ROW');

143: is
144: begin
145: htp.print(mline.num_rows);
146: if mline.partial_row
147: then htp.print('PARTIAL ROW');
148: else htp.print('NO PARTIAL ROW');
149: end if;
150:
151: for i in 1..mline.num_rows

Line 148: else htp.print('NO PARTIAL ROW');

144: begin
145: htp.print(mline.num_rows);
146: if mline.partial_row
147: then htp.print('PARTIAL ROW');
148: else htp.print('NO PARTIAL ROW');
149: end if;
150:
151: for i in 1..mline.num_rows
152: loop

Line 153: htp.print(mline.rows(i));

149: end if;
150:
151: for i in 1..mline.num_rows
152: loop
153: htp.print(mline.rows(i));
154: end loop;
155: end;
156: end;