Oracle PLS-00363: expression #39;#39; cannot be used as an assignment target(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: 表达式 '' 不能用作赋值目标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Oracle PLS-00363: 表达式 '' 不能用作赋值目标


- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- SQL 临时表问题 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01