I'm having trouble with this function in my program.
The purpose of the function is to implement a trigger that checks if a user (utente) has enough money on his account (saldo) in order to add himself to a ride (boleia).
What I can gather from the behavior of my function, both the user (Utente) and the ride (Boleia) are found, but their attributes, specifically his balance (saldo) aren't being accessed correctly. This is because every time I try to add a user to a ride, the exception 'O Utente não tem saldo suficiente', which means that the user doesn't have enough money is thrown.
I can't think of anything I might be doing wrong. Both the Utente and Boleia tables are being correctly inserted, with every attribute also being inserted, but I can't seem to be able to access them in my function.
Here is the code to the function:
create or replace function assocpass_trigger_proc() returns trigger
as $$
declare
x record;
y record;
balancetemp numeric;
begin
select into x * from Utente where(nick=new.nick_passenger);
select into y * from Boleia
where(nick=new.nick_planner and date_time=new.date_time);
select x.balance into balancetemp;
if(found and (balancetemp>=y.cost_passenger)) then
update Utente set balance = balancetemp-y.cost_passenger
where Utente.nick = new.nick_passenger;
insert into InscricaoP(nick_passenger,nick_planner,data_hora)
values(new.nick_passenger, new.nick_planner, new.date_time);
elseif(found and (x.saldo<y.custo_passageiro)) then
raise exception 'O Utente não tem saldo suficiente';
else
raise exception 'A Boleia não existe';
end if;
end
$$ language plpgsql;
And here is the insertion of the relation:
insert into InscricaoP(nick_planner,date_time,nick_passenger)
values('zero','15/06','cinco');
Both nick_planner and nick_passenger come from the "user" (Utilizador) entity Date_time and cost_passenger come from the "ride" (Boleia) entity.
PL/pgSQLor simplyplpgsqlis the default procedural language of PostgreSQL.PL/SQLis the equivalent for Oracle. – Erwin Brandstetter Dec 4 '12 at 22:42