Hello,
I'm working with a really old package that uses local or plain old pl/sql types defined in a package. Is it possible to access all of the types dynamically? Specifically, what I'm after, is the ability to say:
Anyone know if this is possible?
Thanks!
I'm working with a really old package that uses local or plain old pl/sql types defined in a package. Is it possible to access all of the types dynamically? Specifically, what I'm after, is the ability to say:
Code:
TYPE t_info IS RECORD (
tax_type VARCHAR2(15),
tax_rate_type VARCHAR2(10),
tax_shipping_flag VARCHAR2(1),
tax_rate NUMBER);
myType t_info;
FOR each attribute in myType LOOP
do something with attribute
END LOOP
Anyone know if this is possible?
Thanks!