1

我创建了一个 plsql 程序来从替换变量中获取一个employee_id。每当我尝试输入字母时,我都会收到一条错误消息,其中 ORA-06550 作为错误号。我把它放在异常部分,但它似乎没有被提出。

这是我在替换变量中输入“kk”时的错误消息...

Error report:
ORA-06550: line 13, column 9:
PLS-00201: identifier 'KK' must be declared
ORA-06550: line 13, column 1:
PL/SQL: Statement ignored
06550. 00000 -  "line %s, column %s:\n%s"
*Cause:    Usually a PL/SQL compilation error.
*Action:

这是我的 pl/sql 块

set serveroutput on
set verify off
declare
  cursor cur(mid employees.employee_id%type) is
  select e.last_name employee, 
         m.last_name manager 
    from employees e 
    join employees m 
      on m.employee_id = e.manager_id
   where m.employee_id=mid;

   rec cur%rowtype;
   m_id employees.employee_id%type;
   ex exception;
   pragma exception_init(ex, -06550);

begin
  m_id := &id;
  open cur(m_id);
  fetch cur into rec;
    dbms_output.put_line('here '||rec.employee || ' ' || rec.manager);
  close cur;

exception
  when ex then dbms_output.put_line('employee_id was not a valid number');
end;
/

有谁知道为什么我不能捕获该异常?

4

3 回答 3

4

您无法在运行时捕获该异常,因为这是编译时错误。

m_id := &id;

尝试键入'KK'而不是KK,否则它将被解释为标识符。

于 2012-11-25T13:08:27.883 回答
1

我希望我能发表评论。您不能将代码更改为:

m_id := '&id';

所以你不需要捕获那个异常。

捕获号码异常的更新:

declare
    (...)
begin
    m_id := to_number('&id');
    (...)
exception
    when VALUE_ERROR then
         dbms_output.put_line('You provided invalid number'); 
end;
于 2012-11-25T18:05:17.083 回答
1

你的代码是绝对正确的。请使用员工 ID 而不是表中的 KK。它必须是一个数字。例如 101 或 102

在游标的 where 子句中,您使用了“m.employee_id=mid”,并且employee_id 的数据类型是数字。

谢谢:)

于 2012-11-29T20:10:52.213 回答