oracle – pls_integer和binary_integer有什么区别?

前端之家收集整理的这篇文章主要介绍了oracle – pls_integer和binary_integer有什么区别?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我继承了一些代码,这将成为一些额外的工作的基础。看看存储的procs,我看到很多关联数组。

其中一些由binary_integers索引,一些由pls_integers索引。两者之间有什么区别吗?

我看了一下the documentation,但除了这一行:

The PL/sql data types PLS_INTEGER and BINARY_INTEGER are identical. For simplicity,this document uses PLS_INTEGER to mean both PLS_INTEGER and BINARY_INTEGER.

我找不到两者之间的区别。那有什么区别呢?由于历史/兼容性的原因吗?

我正在使用Oracle 10gR2

历史原因他们 used to be different before 10g

On 8i and 9i,PLS_INTEGER was noticeably faster than BINARY_INTEGER.

When it comes to declaring and manipulating integers,Oracle offers lots of options,including:

INTEGER – defined in the STANDARD package as a subtype of NUMBER,this datatype is implemented in a completely platform-independent fashion,which means that anything you do with NUMBER or INTEGER variables should work the same regardless of the hardware on which the database is installed.

BINARY_INTEGER – defined in the STANDARD package as a subtype of INTEGER,variables declared as BINARY_INTEGER can be assigned values between -231 .. 231,aka -2,147,483,647 to 2,647. Prior to Oracle9i Database Release 2,BINARY_INTEGER was the only indexing datatype allowed for associative arrays (aka,index-by tables),as in:

TYPE my_array_t IS TABLE OF VARCHAR2(100) 
  INDEX BY BINARY_INTEGER

PLS_INTEGER – defined in the STANDARD package as a subtype of BINARY_INTEGER,variables declared as PLS_INTEGER can be assigned values between -231 .. 231,647. PLS_INTEGER operations use machine arithmetic,so they are generally faster than NUMBER and INTEGER operations. Also,prior to Oracle Database 10g,they are faster than BINARY_INTEGER. In Oracle Database 10g,however,BINARY_INTEGER and PLS_INTEGER are now identical and can be used interchangeably.

原文链接:https://www.f2er.com/oracle/205890.html

猜你在找的Oracle相关文章