You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/core/output_buffers/ut_output_buffer_base.tps
+10-5Lines changed: 10 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
create or replace type ut_output_buffer_base authid definer as object(
1
+
create or replace type ut_output_buffer_base force authid definer as object(
2
2
/*
3
3
utPLSQL - Version 3
4
4
Copyright 2016 - 2018 utPLSQL Project
@@ -17,13 +17,18 @@ create or replace type ut_output_buffer_base authid definer as object(
17
17
*/
18
18
19
19
output_id raw(32),
20
-
member procedure init(self in out nocopy ut_output_buffer_base),
20
+
is_closed number(1,0),
21
+
start_date date,
22
+
last_message_id number(38,0),
23
+
self_type varchar2(250 byte),
24
+
member procedure init(self in out nocopy ut_output_buffer_base, a_output_id raw := null, a_self_type varchar2 := null),
25
+
member function get_lines_cursor(a_initial_timeout natural := null, a_timeout_sec natural := null) return sys_refcursor,
26
+
member procedure lines_to_dbms_output(self in ut_output_buffer_base, a_initial_timeout natural := null, a_timeout_sec natural := null),
27
+
member procedure cleanup_buffer(self in ut_output_buffer_base, a_retention_time_sec natural := null),
21
28
not instantiable member procedure close(self in out nocopy ut_output_buffer_base),
22
29
not instantiable member procedure send_line(self in out nocopy ut_output_buffer_base, a_text varchar2, a_item_type varchar2 := null),
23
30
not instantiable member procedure send_lines(self in out nocopy ut_output_buffer_base, a_text_list ut_varchar2_rows, a_item_type varchar2 := null),
24
31
not instantiable member procedure send_clob(self in out nocopy ut_output_buffer_base, a_text clob, a_item_type varchar2 := null),
25
-
not instantiable member function get_lines(a_initial_timeout natural := null, a_timeout_sec natural := null) return ut_output_data_rows pipelined,
26
-
not instantiable member function get_lines_cursor(a_initial_timeout natural := null, a_timeout_sec natural := null) return sys_refcursor,
27
-
not instantiable member procedure lines_to_dbms_output(self in ut_output_buffer_base, a_initial_timeout natural := null, a_timeout_sec natural := null)
32
+
not instantiable member function get_lines(a_initial_timeout natural := null, a_timeout_sec natural := null) return ut_output_data_rows pipelined
0 commit comments