Subject | What component? |
---|---|
Author | Rafael Colucci |
Post date | 2004-05-18T18:10:45Z |
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
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