日期:2014-05-17  浏览次数:21107 次

求助,ORACLE PL/SQL 万思不得其解的问题
先贴上代码:
SQL code

declare
    type nestable_type_varchar2 is table of varchar2(10);
    nestable_varchar2 nestable_type_varchar2 := nestable_type_varchar2(null);
    
    type map_type_varchar2 is table of varchar2(10) index by binary_integer;
    map_varchar2 map_type_varchar2;
    
    type array_type_varchar2 is varray(10) of varchar2(10);
    array_varchar2 array_type_varchar2 := array_type_varchar2('123');
    
    type record_type_dept is record (
        deptNo number(2), 
        deptName varchar2(14)
    );
    
    type nestable_type_dept is table of record_type_dept;
    nestable_dept nestable_type_dept;
    
    type array_type_dept is varray(10) of record_type_dept;
    array_dept array_type_dept;
    
    xx boolean;
begin
    dbms_output.put_line('nestable_varchar2.count: ' || nestable_varchar2.count);
    dbms_output.put_line('map_varchar2.count: ' || map_varchar2.count);
    dbms_output.put_line('array_varchar2.count: ' || array_varchar2.count);
    
    xx := array_varchar2.exists(12);
    
    dbms_output.put_line('array_varchar2.exists(12): ' 
        || case when xx then 'yes' else 'no' end);
    
    dbms_output.put_line('nestable_dept.count: ' || nestable_dept.count);
    dbms_output.put_line('array_dept.count: ' || array_dept.count);
    
    dbms_output.put_line(1 / 0);
    
    exception 
    when others then
        dbms_output.put_line('exception found.');
end;



在SQL*Plus 运行时,输出如下:
nestable_varchar2.count: 1
map_varchar2.count: 0
array_varchar2.count: 1
array_varchar2.exists(12): yes
exception found.

在PL/SQL developer 里运行时,输出的结果是这样:
nestable_varchar2.count: 1
map_varchar2.count: 0
array_varchar2.count: 1
array_varchar2.exists(12): no
exception found.

由输出结果看出,PL/SQL developer的输出结果是正确的,array_varchar2.exists(12)应该返回为false!而SQL*Plus的输出结果是错误的!

这是为什么呢,这么奇怪的结果输出?

如果将抛异常的代码
dbms_output.put_line('nestable_dept.count: ' || nestable_dept.count);
dbms_output.put_line('array_dept.count: ' || array_dept.count);

dbms_output.put_line(1 / 0);

注释掉,SQL*Plus的输出又正常了!
nestable_varchar2.count: 1
map_varchar2.count: 0
array_varchar2.count: 1
array_varchar2.exists(12): no

PL/SQL 过程已成功完成。


这是为什么呢,万思不得其解,求高手解答!!!

------解决方案--------------------
xx boolean;

你打印测试下,在SQLPLUS和PLSQL DEV 这个初始化的值是否一样?
------解决方案--------------------
把这段逻辑抽离出来,对于这一句
dbms_output.put_line('=='||array_varchar2(1));
执行与否,结果也不一致,是否sql*plus的机制与众不同?
SQL code
SQL>     DECLARE 
  2      type array_type_varchar2 is varray(10) of varchar2(10);
  3      array_varchar2 array_type_varchar2 := array_type_varchar2('123');
  4      xx BOOLEAN;
  5      BEGIN 
  6      dbms_output.put_line('=='||array_varchar2(1));
  7      xx:=array_varchar2.exists(12);
  8      dbms_output.put_line('array_varchar2.exists(12): ' 
  9          || case when xx then 'yes' else 'no' end);
 10      END;
 11  /
==123
array_varchar2.exists(12): yes

PL/SQL 过程已成功完成。

SQL>     DECLARE 
  2      type array_type_varchar2 is varray(10) of varchar2(10);
  3      array_varchar2 array_type_varchar2 := array_type_varchar2('123');
  4      xx BOOLEAN;
  5      BEGIN 
  6      --dbms_output.put_line('=='||array_varchar2(1));
  7      xx:=array_varchar2.exists(12);
  8      dbms_output.put_line('array_varchar2.exists(12): ' 
  9          || case when xx then 'yes' else 'no' end);
 10      END;
 11  /
array_varchar2.exists(12): no

PL/SQL 过程已成功完成。

------解决方案--------------------

PL/SQL块同样是以数据库对象为操作对象,但由于SQL本身不具备过程控制功能,所以为了能够与其他语言一样具备过程控制的处理功能,在SQL中加入诸如循环和选择等面向过程的处理功能,由此形成了PL/SQL。所