挿入クエリがデータベースに保存されるように、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;