【发布时间】:2019-08-09 17:55:58
【问题描述】:
from 子句查询我提出了一个查询以从两个表中获取数据检查该代码
select empno,ename,job,mgr,hiredate,sal,comm,deptno,grade gr
from emp
left outer join salgrade on ( emp.sal between losal and hisal)
我还将属性更改为可见和不可见,就像该代码一样
if get_item_property('text_item17', visible) = 'TRUE' then
set_item_property('text_item17', visible, property_false);
else
set_item_property('text_item17', visible, property_true);
set_item_property('text_item17',enabled,property_true);
set_item_property('text_item17',enabled,property_true);
set_item_property('text_item17',NAVIGABLE ,property_true);
set_item_property('text_item17',UPDATE_ALLOWED,property_true);
set_item_property('text_item17',QUERYABLE,property_true);
set_item_property('text_item17',UPDATE_NULL,property_true);
end if;
当我运行表单时出现无法更新数据的错误
【问题讨论】:
标签: oracle oracle11g oracleforms