0
IF l_value = 'FALSE' THEN
  RAISE_APPLICATION_ERROR(-20299, 'some error message');
END IF;

这是表触发器的一部分。它应该返回一个错误号和消息,但是当警报弹出时它只返回消息号。没有“一些错误信息”。怎么了

4

2 回答 2

2

表单上的某些触发代码已引发表单中的警报。看看你的ON-ERROR触发器——它有什么代码?

您可能需要对其进行扩充以显示DBMS_ERROR_TEXT在警报中。

于 2012-08-15T04:54:10.370 回答
2

也许这个名字RAISE_APPLICATION_ERROR对你有误导。它不会在您的 GUI 上弹出一些东西。您根据所使用的客户端自行编程。您可以使用它RAISE_APPLICATION_ERROR来创建您自己的 SQL 错误并根据这些错误采取行动。

例子

-- a example table
create table mytest (col_a number, col_b char(20));

-- a example trigger
CREATE OR REPLACE TRIGGER mytest_before
BEFORE UPDATE
    ON mytest
    FOR EACH ROW
DECLARE
BEGIN
    if :new.col_a < 0 then
      RAISE_APPLICATION_ERROR(-20299, 'negative value not allowed for column A');
    end if;
END;

insert into mytest values (1,'hallo');

set serveroutput on
DECLARE
  negative_value EXCEPTION; -- declare exception
  PRAGMA EXCEPTION_INIT (negative_value, -20299); -- assign error code to exception
BEGIN
  update mytest set col_a = -1 where col_b = 'hallo';
EXCEPTION
  WHEN negative_value THEN -- handle exception
    -- do whatever you need to do to bring the error to the user
    DBMS_OUTPUT.PUT_LINE(TO_CHAR(SQLERRM(-20299)));
END;
/

以上将为您带来 SQL*Plus 或那种 SQL Developer 中的输出。

table MYTEST created.
TRIGGER mytest_before compiled
1 rows inserted.
anonymous block completed
ORA-20299: negative value not allowed for column A
ORA-06512: at "DEMO.MYTEST_BEFORE", line 4
ORA-04088: error during execution of trigger 'DEMO.MYTEST_BEFORE

除了 DBMS_OUTPUT.PUT_LINE,您可以做任何您需要做的事情来向用户展示您希望他展示的任何内容。

于 2012-08-14T18:47:48.563 回答