E
empty023
Unregistered / Unconfirmed
GUEST, unregistred user!
我的数据表名是:下单表 primary key为 流水号,我现在想用触发器来得到唯一的流水号.
在ORACLE里面建立触发器,代码为:
create or replace trigger BI_生成下單編號
before insert on 下單表
for each row
declare
-- local variables here
a varchar2(20);
begin
begin
Select 下單序列號.NEXTVAL into :New.流水號 from dual;
exception
when others then
return;
end;
end BI_生成下單編號;
我现在想把触发器得到的最新的流水号返回到FORM里的EDIT里,该怎么做?
在ORACLE里面建立触发器,代码为:
create or replace trigger BI_生成下單編號
before insert on 下單表
for each row
declare
-- local variables here
a varchar2(20);
begin
begin
Select 下單序列號.NEXTVAL into :New.流水號 from dual;
exception
when others then
return;
end;
end BI_生成下單編號;
我现在想把触发器得到的最新的流水号返回到FORM里的EDIT里,该怎么做?