RDB$PROCEDURE_PARAMETERS
RDB$PROCEDURE_PARAMETERS
stores the parameters of stored procedures and their attributes.It holds one row for each parameter.
Column Name | Data Type | Description |
---|---|---|
|
|
Parameter name |
|
|
The name of the procedure where the parameter is defined |
|
|
The sequential number of the parameter |
|
|
Indicates whether the parameter is for input (value 0) or output (value 1) |
|
|
The name of the user-created domain, when a domain is referenced instead of a data type.If the name starts with the prefix “RDB$”, it is the name of the domain automatically generated by the system for the parameter. |
|
|
Could store comments related to the parameter |
|
|
Indicates whether the parameter was defined by the system (value or greater) or by a user (value 0) |
|
|
The binary language representation (BLR) of the default value of the parameter |
|
|
The default value for the parameter, in PSQL code |
|
|
The identifier of the collation used for a character parameter |
|
|
The flag indicating whether |
|
|
Flag: indicates how this parameter is passed:
|
|
|
The name of the column the parameter references, if it was declared using |
|
|
The name of the table the parameter references, if it was declared using |
|
|
Package name of the procedure (or |