【问题标题】:error when creating a new pre-rendering process (automaic row fetch)创建新的预渲染进程时出错(自动获取行)
【发布时间】:2020-11-07 14:35:37
【问题描述】:

所以我的页面有问题,在将其与其他类似页面进行比较后,我注意到它缺少预渲染 -> 在标题之后 -> 进程基本上使用我发送的项目值自动重新加载数据上一页。该过程称为自动行提取 [lefacy]。 我试图为该页面创建它,但当我尝试加载它时它总是显示错误。 任何提示我可能会错过什么

我收到此错误消息

ORA-06550: line 1, column 22: PL/SQL: ORA-00936: missing expression
Contact your application administrator. Details about this incident are available via debug id "353666".

Technical Info (only visible for developers)
error_statement:
begin begin  select  into  from "CONTRAT" where "ID_CONTRAT" = :p_rowid; end;
end;

【问题讨论】:

    标签: sql oracle oracle-apex


    【解决方案1】:

    您的选择子句不完整。你应该通知一些关于选择和进入的信息。 示例:

    declare
      v_name varchar2(50);
    begin
      select NAME
      into v_name
      from EMPLOYEE;
    end;
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2017-04-26
      • 1970-01-01
      • 2012-07-14
      • 1970-01-01
      • 2014-12-31
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多