Oracle PLS-00363: 表达式 '' 不能用作赋值目标

Oracle PLS-00363: expression #39;#39; cannot be used as an assignment target(Oracle PLS-00363: 表达式 不能用作赋值目标)
本文介绍了Oracle PLS-00363: 表达式 '' 不能用作赋值目标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,不知道为什么我会收到这个错误.基本上我在这三行中得到它:

Hello not sure why Im getting this error. Basically I get it in these three lines:

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

程序:

 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 ;

推荐答案

p_temp_foo 是一个 IN 参数.本质上,这些是只读的.您可以将其定义为 IN OUT 参数或 OUT 参数.

p_temp_foo is an IN parameter. By nature, these are read only. You could define it as an IN OUT parameter, or an OUT parameter.

有关更多信息,请参见此处:http://plsql-tutorial.com/plsql-passing-parameters-procedure-function.htm

For more info see here: http://plsql-tutorial.com/plsql-passing-parameters-procedure-function.htm

这篇关于Oracle PLS-00363: 表达式 '' 不能用作赋值目标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)