Subject Re: [firebird-support] How to get datatype of stored procedures from system tables
Author Ann W. Harrison
Bob Murdoch wrote:
> I can query system tables to get a list of stored procedures and their
> parameter names. Is there a way to obtain the datatype of the
> procedure as well?
>
The field RDB$FIELD_SOURCE in RDB$PROCEDURE_PARAMETERS is a key into
RDB$FIELDS where the datatype information is stored. RDB$TYPES will
translate from the numbers to strings. (7 = char, 14 = varchar)

Regards,


Ann