What's the difference between pls_integer and binary_integer?

后端 未结 3 1894
盖世英雄少女心
盖世英雄少女心 2020-12-08 20:03

I\'ve inherited some code which is going to be the base for some additional work. Looking at the stored procs, I see quite a lot of associative-arrays.

Some of these

3条回答
  •  自闭症患者
    2020-12-08 20:43

    Another difference between pls_integer and binary_integer is that when calculations involving a pls_integer overflow the PL/SQL engine will raise a run time exception. But, calculations involving a binary_integer will not raise an exception even if there is an overflow.

提交回复
热议问题