Forum OpenACS Development: Re: Handling Double Submits...

Collapse
Posted by Jade Rubick on
What I do is write PL/SQL that does this

begin
insert into foo;
exception when dup_val_on_index
update foo;
end;