为什么我必须单击 formservlet 左上角的保存按钮,以便我的插入查询将保存到数据库?对不起,这里是新手,谢谢
这是我在添加按钮触发器中的 pl sql 代码:
begin
insert into tb_distributor
(distributor_id, distributor_name, distributor_type, distributor_desc)
values
(distributor_id.nextval,:DISTRIBUTOR_NAME, :DISTRIBUTOR_TYPE, :DISTRIBUTOR_DESC);
commit;
end;