我正在另一个程序中执行一个程序。
程序1:
CREATE OR REPLACE PROCEDURE proc_test_status_table(
p_test_description IN VARCHAR2,
p_test_status IN varchar2)
AS
l_sql VARCHAR2(4000);
BEGIN
l_sql := 'insert into test_status_table(test_description, test_status)
values
( '''||p_test_description||''',
'''||p_test_status||''')';
EXECUTE IMMEDIATE (l_sql);
END;
/
程序2:
overriding member procedure after_calling_test(self in out nocopy ut_documentation_reporter, a_test ut_test) as
l_message varchar2(4000);
l_test_description VARCHAR2(1000);
l_test_status VARCHAR2(100);
begin
l_message := coalesce(a_test.description, a_test.name)||' ['||round(a_test.execution_time,3)||' sec]';
Dbms_Output.Put_Line(a_test.result||'test_result');
--if test failed, then add it to the failures list, print failure with number
if a_test.result = ut_utils.gc_disabled then
self.print_yellow_text(l_message || ' (DISABLED)');
l_test_description := 'DISABLED';
proc_test_status_table(l_message, l_test_description);
elsif a_test.result = ut_utils.gc_success then
self.print_green_text(l_message);
l_test_description := 'PASS';
proc_test_status_table(l_message, l_test_description);
elsif a_test.result > ut_utils.gc_success then
failed_test_running_count := failed_test_running_count + 1;
self.print_red_text(l_message || ' (FAILED - ' || failed_test_running_count || ')');
l_test_description := 'FAIL';
proc_test_status_table(l_message, l_test_description);
end if;
-- reproduce the output from before/after procedures and the test
self.print_clob(a_test.get_serveroutputs);
end;
它不会在 test_status_table 表中存储消息和描述,但是在我打印它们时会显示它。
我做错什么了吗?
答案 0 :(得分:2)
可能您只需要在该过程中提交已记录的消息即可。
日志记录是自主事务有效的少数情况之一:通常,我们希望在不干扰正在记录的事务的情况下记录消息。
此外,您无需在此处使用动态SQL。只需引用VALUES子句中的参数即可。
CREATE OR REPLACE PROCEDURE proc_test_status_table(
p_test_description IN VARCHAR2,
p_test_status IN varchar2)
AS
l_sql VARCHAR2(4000);
PRAGMA autonomous_transaction;
BEGIN
insert into test_status_table(test_description, test_status)
values ( p_test_description, p_test_status);
commit;
END;
/
这里AUTONOMOUS_TRANSACTION的值是多少? OP似乎正在构建测试框架。借助自主事务,我们可以保留日志消息,而不会影响更广泛的事务(即测试)。提交没有AUTONOMOUS_TRANSACTION编译指示的日志消息可能会产生一些副作用,这些副作用可能会破坏其他测试(例如ORA-01022,ORA-1555),或者可能会使拆卸更加复杂。
答案 1 :(得分:1)
答案 2 :(得分:-1)
您忘记提交了。如果要将其存储到表中,则在每个插入语句之后必须进行提交。