我似乎在提交页面时使用了自动行处理,但您可能应该在页面处理中使用 PL/SQL 代码:
IF (Product1 is not null and quantidade1 is not null) then
insert into TABLENAME (GUIA_TRANSPORTE, Product, quantidade) values (PXX_GUIA_TRANSPORTE, PXX_Product1, PXX_quantidade1 )
END IF;
IF (PXX_Product2 is not null and PXX_quantidade2 is not null) then
insert into TABLENAME (GUIA_TRANSPORTE, Product, quantidade) values (PXX_GUIA_TRANSPORTE, PXX_Product2, PXX_quantidade2 )
END IF;
IF (PXX_Product3 is not null and PXX_quantidade3 is not null) then
insert into TABLENAME (GUIA_TRANSPORTE, Product, quantidade) values (PXX_GUIA_TRANSPORTE, PXX_Product3, PXX_quantidade3)
END IF;
祝你好运!