您的位置:首页 > 数据库

TimesTen的PL/SQL 函数和过程最多支持多少参数

2017-03-23 21:32 190 查看
在Oracle® TimesTen In-Memory Database PL/SQL Developer Guide 提到

TimesTen 11g Release 2 (11.2.2) implements the PL/SQL language from Oracle Database release 11.2.0.2.

也就是说,由于TimesTen的PL/SQL实现来自于Oracle 11.2.0.2, 因此这个答案需要到Oracle文档中查。

参见 Oracle Database PL/SQL Language Reference

其中number of formal parameters in an explicit cursor, function, or procedure 为 65536

顺带了解的知识:

PL/SQL is based on the programming language Ada. As a result, PL/SQL uses a variant of Descriptive Intermediate Attributed Notation for Ada (DIANA), a tree-structured intermediate language. It is defined using a metanotation called Interface Definition Language (IDL). DIANA is used internally by compilers and other tools.

At compile time, PL/SQL source text is translated into system code. Both the DIANA and system code for a subprogram or package are stored in the database. At run time, they are loaded into the shared memory pool. The DIANA is used to compile dependent subprograms; the system code simply runs.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  timesten plsql