Subject What component?
Author Rafael Colucci
Hi

I have to execute this script thougth IBO ... but I donĀ“t know what
component I have to use ...

create procedure testejosi
as
DECLARE varCount integer;
begin
SELECT Count(*) FROM Conta WHERE NomeConta = 'gugu' into varcount;
if (varCount <= 0) then
INSERT INTO Conta (NomeConta,IsAtiva) VALUES ('gugu', 1);
suspend;
end;

execute procedure TESTEJOSI;
drop procedure TESTEJOSI;

Thanks
Rafael Colucci