Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ut_executable
1 parent 2f39237 commit 3e052e7Copy full SHA for 3e052e7
1 file changed
source/core/types/ut_executable.tpb
@@ -93,12 +93,9 @@ create or replace type body ut_executable is
93
end if;
94
while l_status != 1 loop
95
if l_line is not null then
96
- ut_utils.append_to_clob(self.serveroutput, l_line);
+ ut_utils.append_to_clob(self.serveroutput, l_line||chr(10));
97
98
dbms_output.get_line(line => l_line, status => l_status);
99
- if l_status != 1 then
100
- dbms_lob.writeappend(self.serveroutput,1,chr(10));
101
- end if;
102
end loop;
103
end save_dbms_output;
104
begin
0 commit comments