Subject | when sqlcode do nothing (null in Oracle) |
---|---|
Author | enesual |
Post date | 2008-06-14T20:53:44Z |
I'm trying to hide exception (which means dup_val_on_index in Oracle)
In Oracle usage I use null; to do nothing but i couldn't find what to
do in Firebird?
...
begin
insert into mail_address(mail_address, name) values
(:i_mail_address, :i_name);
when sqlcode -2 do nothing....
end
end
In Oracle usage I use null; to do nothing but i couldn't find what to
do in Firebird?
...
begin
insert into mail_address(mail_address, name) values
(:i_mail_address, :i_name);
when sqlcode -2 do nothing....
end
end