I'm having problems with creating this trigger in PostgreSQL 8.4.
CREATE OR REPLACE FUNCTION tbi_Usuarios() RETURNS TRIGGER AS $tbi_Usuarios$
    BEGIN
        IF trim(both ' ' from NEW.Nombre_usuario) = '' OR NEW.Nombre_usuario IS NULL THEN
            RAISE EXCEPTION 'Debes ingresar un nombre de usuario.';
        END IF;
    IF NEW.Password = '' OR NEW.Password IS NULL THEN
        RAISE EXCEPTION 'Debes ingresar una contraseƱa correctamente';
    ELSE
        NEW.Password := md5(NEW.Password);
    END IF;
    IF Fecha_registro IS NULL THEN
        NEW.Fecha_registro := current_timestamp;
    END IF;
    RETURN NEW;
END;
$tbi_Usuarios$ LANGUAGE plpgsql;
DROP TRIGGER IF EXISTS tr_tbi_Usuarios ON "Usuarios";
CREATE TRIGGER tr_tbi_Usuarios BEFORE INSERT ON "Usuarios"
FOR EACH ROW EXECUTE PROCEDURE tbi_Usuarios();
The thing is that, when I try to insert a row in the database, the following error shows up:
"el registro << new >> no tiene un campo << nombre_usuario >>"
or in English:
"the table << new >> doesn't have a column << nombre_usuario >>"
But in my database, I'm REALLY sure that the columns Nombre_usuario, Password, Fecha_registro exist!
Can anyone help me please?
 
    