Get_Type¶
Retrieves a record attribute type.
FUNCTION Get_Type (
record_ IN type_record_,
name_ IN type_name_ ) RETURN type_typ_
FUNCTION Get_Type (
attr_ IN type_item_record_ ) RETURN type_typ_
Parameters¶
record_
Foundation1 record.
name_
Attribute name.
attr_
Attribute item record.
Return¶
Record attribute type. See more about Ada95 types in global constant variables, Type list.
Example¶
DECLARE
attribute_type_ Plsqlap_Record_API.type_typ_;
BEGIN
...
attribute_type_ := Plsqlap_Record_API.Get_Type(AM, 'APPLICATION_MESSAGE_ID');
...
END;