关于 PL/SQL 包级记录类型的元数据 [英] Metadata regarding PL/SQL package-level record types

查看:27
本文介绍了关于 PL/SQL 包级记录类型的元数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设您有一个定义了 RECORD 类型的 PL/SQL 包:

Suppose you have a PL/SQL package with a RECORD type defined:

CREATE OR REPLACE PACKAGE TEST_PACKAGE AS

    TYPE PERSON_RECORD_TYPE IS RECORD
    (
        first_name VARCHAR2(1000),
        last_name  VARCHAR2(1000)
    );

END;

有没有办法获取TEST_PACKAGE.PERSON_RECORD_TYPE 中包含的字段列表?例如,是否有任何带有此信息的 ALL_* 视图?

Is there any way to obtain a list of fields contained within TEST_PACKAGE.PERSON_RECORD_TYPE? For example, are there any ALL_* views with this information?

我对模式级记录类型不感兴趣,只对级记录类型感兴趣.

I am not interested in schema-level record types, only package-level record types.

推荐答案

如果 PERSON_RECORD_TYPE 被用作某些过程或函数的参数或结果类型,您可以查询 ALL_ARGUMENTS.信息在那里稍微加密(记录和集合的多级封装的层次结构在 POSITION、SEQUENCE 和 DATA_LEVEL 列中编码),但是它存在.

If PERSON_RECORD_TYPE is used as argument or result type of some procedure or function, you can query ALL_ARGUMENTS. The information is little bit encrypted there (the hierarchy of multilevel encapsulation of records and collections is encoded in POSITION,SEQUENCE and DATA_LEVEL columns), however it is present.

我不认为这样的问题指向错误的架构.对于自动 PLSQL 代码生成,这是完全合法的请求,不幸的是,PLSQL 语言支持非常弱.

I don't think such a question points to wrong architecture. For automatic PLSQL code generation this is completely legitimate request, unfortunately with very weak PLSQL language support.

这篇关于关于 PL/SQL 包级记录类型的元数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆