gpt4 book ai didi

oracle - 在 Squirrel 中创建/替换触发器

转载 作者:行者123 更新时间:2023-12-04 01:57:58 26 4
gpt4 key购买 nike

我使用松鼠 3.2.0
当我尝试更换此触发器时:

CREATE OR REPLACE TRIGGER crw_ins_trig
BEFORE INSERT OR UPDATE ON crew
FOR EACH ROW
DECLARE

BEGIN
if (:new.crw_id is null) then
select crw_id_seq.nextval
into :new.crw_id
from dual;
end if;
END;
/

我收到消息“请输入参数值。':new' 的值”

当我单击确定时,结果消息是:
Warning:   Warning: execution completed with warning
SQLState: null
ErrorCode: 17110
Position: 27

Query 1 of 1, Rows read: 0, Elapsed time (seconds) - Total: 0.023, SQL query: 0.023, Building output: 0

在我的应用程序中,我收到一个错误 "ORA-04098: trigger 'CRW_INS_TRIG' is invalid and failed re-validation"
这和松鼠有关系吗?如果是这样,我该如何解决这个问题?

最佳答案

您应该在 SQuirrel 中卸载“sqlparam”插件,之后它不会要求您填写“:paramName”变量的值

关于oracle - 在 Squirrel 中创建/替换触发器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4333267/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com