web-dev-qa-db-fra.com

Oracle PLS-00363: l'expression '' ne peut pas être utilisée comme cible d'affectation

Bonjour, je ne sais pas pourquoi je reçois cette erreur. Fondamentalement, je l'obtiens dans ces trois lignes:

PLS-00363: expression 'p_temp_foo.editable.modified_by' cannot be used as an assignment target
PLS-00363: expression 'p_temp_foo.editable.date' cannot be used as an assignment target
PLS-00363: expression 'p_temp_foo.editable.modified_by' cannot be used as an assignment target

procédure:

 PROCEDURE run_temp_procedure (p_temp_foo IN part_bean, p_member_number IN NUMBER)
 IS
 t_temp_foo part_bean;
  now   DATE;
  BEGIN
  now := SYSDATE;

             p_temp_foo.editable:= t_temp_foo.editable;
        p_temp_foo.editable.date := SYSDATE;
        p_temp_foo.editable.modified_by := p_member_number;


  END run_temp_procedure ;
26
Doc Holiday

p_temp_foo est un paramètre IN. Par nature, ceux-ci sont en lecture seule. Vous pouvez le définir comme IN OUT, ou un paramètre OUT.

Pour plus d'informations, voir ici: http://plsql-tutorial.com/plsql-passing-parameters-procedure-function.htm

42
N West

Générez une nouvelle variable de type VARCHAR2 pour affecter votre chaîne IN (entrée).

procedure sp_name(
ps_list              IN VARCHAR2,
...
other IN's and OUT's
...
)
as

ps_list_copy          VARCHAR2 (32000); 

begin 
ps_list_copy := ps_list;
...
do your works with ps_list_copy
...
...
Exception when others then
....
end sp_name;
1
elfekz