PL / SQL-由于我的功能而无法创建包

时间:2019-11-21 15:02:08

标签: oracle plsql sql-navigator

我正在尝试创建一个程序包,它仅适用于过程。一旦我尝试添加功能,就会出现以下错误:

    15:47:11  line 1: ORA-24344: success with compilation error
15:47:11  14/3    PLS-00103: Encountered the symbol "TITLE" when expecting one of the following:
15:47:11            . @ % ; is default authid as cluster order using external
15:47:11            character deterministic parallel_enable pipelined aggregate
15:47:11            result_cache accessible rewrite
15:47:11            The symbol ";" was substituted for "TITLE" to continue.

我的代码:

create or replace package job_pkg is

  procedure add_job 
  (jobid jobs_test.job_id%type, jobtitle jobs_test.job_title%type);
  ---------------------------------------------------------------------
  procedure upd_job 
  (alt jobs_test.job_id%type, neu jobs_test.job_id%type);
  ---------------------------------------------------------------------
  procedure del_job 
  (jobid jobs_test.job_id%type);
  ---------------------------------------------------------------------
  function get_job
  (id jobs_test.job_id%type) return varchar2 
  title jobs_test.job_title%type;

end job_pkg;

提前谢谢

1 个答案:

答案 0 :(得分:1)

您缺少分号。

  function get_job
  (id jobs_test.job_id%type) return varchar2;

  title jobs_test.job_title%type;

假设您正在创建包级变量“ title”,并在此处声明您的功能规格。